/[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.2 by wakaba, Tue May 1 10:47:37 2007 UTC revision 1.106 by wakaba, Sun Mar 9 10:31:19 2008 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.  ## ISSUE:
7    ## var doc = implementation.createDocument (null, null, null);
8    ## doc.write ('');
9    ## alert (doc.compatMode);
10    
11    ## TODO: Control charcters and noncharacters are not allowed (HTML5 revision 1263)
12    ## TODO: 1252 parse error (revision 1264)
13    ## TODO: 8859-11 = 874 (revision 1271)
14    
15  my $permitted_slash_tag_name = {  my $permitted_slash_tag_name = {
16    base => 1,    base => 1,
# Line 10  my $permitted_slash_tag_name = { Line 18  my $permitted_slash_tag_name = {
18    meta => 1,    meta => 1,
19    hr => 1,    hr => 1,
20    br => 1,    br => 1,
21    img=> 1,    img => 1,
22    embed => 1,    embed => 1,
23    param => 1,    param => 1,
24    area => 1,    area => 1,
# Line 18  my $permitted_slash_tag_name = { Line 26  my $permitted_slash_tag_name = {
26    input => 1,    input => 1,
27  };  };
28    
29  my $entity_char = {  my $c1_entity_char = {
30    AElig => "\x{00C6}",    0x80 => 0x20AC,
31    Aacute => "\x{00C1}",    0x81 => 0xFFFD,
32    Acirc => "\x{00C2}",    0x82 => 0x201A,
33    Agrave => "\x{00C0}",    0x83 => 0x0192,
34    Alpha => "\x{0391}",    0x84 => 0x201E,
35    Aring => "\x{00C5}",    0x85 => 0x2026,
36    Atilde => "\x{00C3}",    0x86 => 0x2020,
37    Auml => "\x{00C4}",    0x87 => 0x2021,
38    Beta => "\x{0392}",    0x88 => 0x02C6,
39    Ccedil => "\x{00C7}",    0x89 => 0x2030,
40    Chi => "\x{03A7}",    0x8A => 0x0160,
41    Dagger => "\x{2021}",    0x8B => 0x2039,
42    Delta => "\x{0394}",    0x8C => 0x0152,
43    ETH => "\x{00D0}",    0x8D => 0xFFFD,
44    Eacute => "\x{00C9}",    0x8E => 0x017D,
45    Ecirc => "\x{00CA}",    0x8F => 0xFFFD,
46    Egrave => "\x{00C8}",    0x90 => 0xFFFD,
47    Epsilon => "\x{0395}",    0x91 => 0x2018,
48    Eta => "\x{0397}",    0x92 => 0x2019,
49    Euml => "\x{00CB}",    0x93 => 0x201C,
50    Gamma => "\x{0393}",    0x94 => 0x201D,
51    Iacute => "\x{00CD}",    0x95 => 0x2022,
52    Icirc => "\x{00CE}",    0x96 => 0x2013,
53    Igrave => "\x{00CC}",    0x97 => 0x2014,
54    Iota => "\x{0399}",    0x98 => 0x02DC,
55    Iuml => "\x{00CF}",    0x99 => 0x2122,
56    Kappa => "\x{039A}",    0x9A => 0x0161,
57    Lambda => "\x{039B}",    0x9B => 0x203A,
58    Mu => "\x{039C}",    0x9C => 0x0153,
59    Ntilde => "\x{00D1}",    0x9D => 0xFFFD,
60    Nu => "\x{039D}",    0x9E => 0x017E,
61    OElig => "\x{0152}",    0x9F => 0x0178,
62    Oacute => "\x{00D3}",  }; # $c1_entity_char
   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}",  
 };  
63    
64  my $special_category = {  my $special_category = {
65    address => 1, area => 1, base => 1, basefont => 1, bgsound => 1,    address => 1, area => 1, base => 1, basefont => 1, bgsound => 1,
# Line 293  my $special_category = { Line 74  my $special_category = {
74    textarea => 1, tfoot => 1, thead => 1, title => 1, tr => 1, ul => 1, wbr => 1,    textarea => 1, tfoot => 1, thead => 1, title => 1, tr => 1, ul => 1, wbr => 1,
75  };  };
76  my $scoping_category = {  my $scoping_category = {
77    button => 1, caption => 1, html => 1, marquee => 1, object => 1,    applet => 1, button => 1, caption => 1, html => 1, marquee => 1, object => 1,
78    table => 1, td => 1, th => 1,    table => 1, td => 1, th => 1,
79  };  };
80  my $formatting_category = {  my $formatting_category = {
# Line 302  my $formatting_category = { Line 83  my $formatting_category = {
83  };  };
84  # $phrasing_category: all other elements  # $phrasing_category: all other elements
85    
86    sub parse_byte_string ($$$$;$) {
87      my $self = ref $_[0] ? shift : shift->new;
88      my $charset = shift;
89      my $bytes_s = ref $_[0] ? $_[0] : \($_[0]);
90      my $s;
91      
92      if (defined $charset) {
93        require Encode; ## TODO: decode(utf8) don't delete BOM
94        $s = \ (Encode::decode ($charset, $$bytes_s));
95        $self->{input_encoding} = lc $charset; ## TODO: normalize name
96        $self->{confident} = 1;
97      } else {
98        ## TODO: Implement HTML5 detection algorithm
99        require Whatpm::Charset::UniversalCharDet;
100        $charset = Whatpm::Charset::UniversalCharDet->detect_byte_string
101            (substr ($$bytes_s, 0, 1024));
102        $charset ||= 'windows-1252';
103        $s = \ (Encode::decode ($charset, $$bytes_s));
104        $self->{input_encoding} = $charset;
105        $self->{confident} = 0;
106      }
107    
108      $self->{change_encoding} = sub {
109        my $self = shift;
110        my $charset = lc shift;
111        ## TODO: if $charset is supported
112        ## TODO: normalize charset name
113    
114        ## "Change the encoding" algorithm:
115    
116        ## Step 1    
117        if ($charset eq 'utf-16') { ## ISSUE: UTF-16BE -> UTF-8? UTF-16LE -> UTF-8?
118          $charset = 'utf-8';
119        }
120    
121        ## Step 2
122        if (defined $self->{input_encoding} and
123            $self->{input_encoding} eq $charset) {
124          $self->{confident} = 1;
125          return;
126        }
127    
128        !!!parse-error (type => 'charset label detected:'.$self->{input_encoding}.
129            ':'.$charset, level => 'w');
130    
131        ## Step 3
132        # if (can) {
133          ## change the encoding on the fly.
134          #$self->{confident} = 1;
135          #return;
136        # }
137    
138        ## Step 4
139        throw Whatpm::HTML::RestartParser (charset => $charset);
140      }; # $self->{change_encoding}
141    
142      my @args = @_; shift @args; # $s
143      my $return;
144      try {
145        $return = $self->parse_char_string ($s, @args);  
146      } catch Whatpm::HTML::RestartParser with {
147        my $charset = shift->{charset};
148        $s = \ (Encode::decode ($charset, $$bytes_s));    
149        $self->{input_encoding} = $charset; ## TODO: normalize
150        $self->{confident} = 1;
151        $return = $self->parse_char_string ($s, @args);
152      };
153      return $return;
154    } # parse_byte_string
155    
156    ## NOTE: HTML5 spec says that the encoding layer MUST NOT strip BOM
157    ## and the HTML layer MUST ignore it.  However, we does strip BOM in
158    ## the encoding layer and the HTML layer does not ignore any U+FEFF,
159    ## because the core part of our HTML parser expects a string of character,
160    ## not a string of bytes or code units or anything which might contain a BOM.
161    ## Therefore, any parser interface that accepts a string of bytes,
162    ## such as |parse_byte_string| in this module, must ensure that it does
163    ## strip the BOM and never strip any ZWNBSP.
164    
165    *parse_char_string = \&parse_string;
166    
167  sub parse_string ($$$;$) {  sub parse_string ($$$;$) {
168    my $self = shift->new;    my $self = ref $_[0] ? shift : shift->new;
169    my $s = \$_[0];    my $s = ref $_[0] ? $_[0] : \($_[0]);
170    $self->{document} = $_[1];    $self->{document} = $_[1];
171      @{$self->{document}->child_nodes} = ();
172    
173      ## NOTE: |set_inner_html| copies most of this method's code
174    
175      $self->{confident} = 1 unless exists $self->{confident};
176      $self->{document}->input_encoding ($self->{input_encoding})
177          if defined $self->{input_encoding};
178    
   my $i;  
179    my $i = 0;    my $i = 0;
180    $self->{set_next_input_character} = sub {    my $line = 1;
181      my $column = 0;
182      $self->{set_next_char} = sub {
183      my $self = shift;      my $self = shift;
184      $self->{next_input_character} = -1 and return if $i >= length $$s;  
185      $self->{next_input_character} = ord substr $$s, $i++, 1;      pop @{$self->{prev_char}};
186        unshift @{$self->{prev_char}}, $self->{next_char};
187    
188        $self->{next_char} = -1 and return if $i >= length $$s;
189        $self->{next_char} = ord substr $$s, $i++, 1;
190        $column++;
191            
192      if ($self->{next_input_character} == 0x000D) { # CR      if ($self->{next_char} == 0x000A) { # LF
193        if ($i >= length $$s) {        $line++;
194          #        $column = 0;
195        } else {      } elsif ($self->{next_char} == 0x000D) { # CR
196          my $next_char = ord substr $$s, $i++, 1;        $i++ if substr ($$s, $i, 1) eq "\x0A";
197          if ($next_char == 0x000A) { # LF        $self->{next_char} = 0x000A; # LF # MUST
198            #        $line++;
199          } else {        $column = 0;
200            push @{$self->{char}}, $next_char;      } elsif ($self->{next_char} > 0x10FFFF) {
201          }        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
202        }      } elsif ($self->{next_char} == 0x0000) { # NULL
203        $self->{next_input_character} = 0x000A; # LF # MUST        !!!parse-error (type => 'NULL');
204      } elsif ($self->{next_input_character} > 0x10FFFF) {        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
       $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST  
     } elsif ($self->{next_input_character} == 0x0000) { # NULL  
       $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST  
205      }      }
206    };    };
207      $self->{prev_char} = [-1, -1, -1];
208      $self->{next_char} = -1;
209    
210    $self->{parse_error} = $_[2] || sub {    my $onerror = $_[2] || sub {
211      warn "Parse error at character $i\n"; ## TODO: Report (line, column) pair      my (%opt) = @_;
212        warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";
213      };
214      $self->{parse_error} = sub {
215        $onerror->(@_, line => $line, column => $column);
216    };    };
217    
218    $self->_initialize_tokenizer;    $self->_initialize_tokenizer;
# Line 348  sub parse_string ($$$;$) { Line 226  sub parse_string ($$$;$) {
226  sub new ($) {  sub new ($) {
227    my $class = shift;    my $class = shift;
228    my $self = bless {}, $class;    my $self = bless {}, $class;
229    $self->{set_next_input_character} = sub {    $self->{set_next_char} = sub {
230      $self->{next_input_character} = -1;      $self->{next_char} = -1;
231    };    };
232    $self->{parse_error} = sub {    $self->{parse_error} = sub {
233      #      #
234    };    };
235      $self->{change_encoding} = sub {
236        # if ($_[0] is a supported encoding) {
237        #   run "change the encoding" algorithm;
238        #   throw Whatpm::HTML::RestartParser (charset => $new_encoding);
239        # }
240      };
241      $self->{application_cache_selection} = sub {
242        #
243      };
244    return $self;    return $self;
245  } # new  } # new
246    
247    sub CM_ENTITY () { 0b001 } # & markup in data
248    sub CM_LIMITED_MARKUP () { 0b010 } # < markup in data (limited)
249    sub CM_FULL_MARKUP () { 0b100 } # < markup in data (any)
250    
251    sub PLAINTEXT_CONTENT_MODEL () { 0 }
252    sub CDATA_CONTENT_MODEL () { CM_LIMITED_MARKUP }
253    sub RCDATA_CONTENT_MODEL () { CM_ENTITY | CM_LIMITED_MARKUP }
254    sub PCDATA_CONTENT_MODEL () { CM_ENTITY | CM_FULL_MARKUP }
255    
256    sub DATA_STATE () { 0 }
257    sub ENTITY_DATA_STATE () { 1 }
258    sub TAG_OPEN_STATE () { 2 }
259    sub CLOSE_TAG_OPEN_STATE () { 3 }
260    sub TAG_NAME_STATE () { 4 }
261    sub BEFORE_ATTRIBUTE_NAME_STATE () { 5 }
262    sub ATTRIBUTE_NAME_STATE () { 6 }
263    sub AFTER_ATTRIBUTE_NAME_STATE () { 7 }
264    sub BEFORE_ATTRIBUTE_VALUE_STATE () { 8 }
265    sub ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE () { 9 }
266    sub ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE () { 10 }
267    sub ATTRIBUTE_VALUE_UNQUOTED_STATE () { 11 }
268    sub ENTITY_IN_ATTRIBUTE_VALUE_STATE () { 12 }
269    sub MARKUP_DECLARATION_OPEN_STATE () { 13 }
270    sub COMMENT_START_STATE () { 14 }
271    sub COMMENT_START_DASH_STATE () { 15 }
272    sub COMMENT_STATE () { 16 }
273    sub COMMENT_END_STATE () { 17 }
274    sub COMMENT_END_DASH_STATE () { 18 }
275    sub BOGUS_COMMENT_STATE () { 19 }
276    sub DOCTYPE_STATE () { 20 }
277    sub BEFORE_DOCTYPE_NAME_STATE () { 21 }
278    sub DOCTYPE_NAME_STATE () { 22 }
279    sub AFTER_DOCTYPE_NAME_STATE () { 23 }
280    sub BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE () { 24 }
281    sub DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE () { 25 }
282    sub DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE () { 26 }
283    sub AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE () { 27 }
284    sub BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE () { 28 }
285    sub DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE () { 29 }
286    sub DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE () { 30 }
287    sub AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE () { 31 }
288    sub BOGUS_DOCTYPE_STATE () { 32 }
289    sub AFTER_ATTRIBUTE_VALUE_QUOTED_STATE () { 33 }
290    
291    sub DOCTYPE_TOKEN () { 1 }
292    sub COMMENT_TOKEN () { 2 }
293    sub START_TAG_TOKEN () { 3 }
294    sub END_TAG_TOKEN () { 4 }
295    sub END_OF_FILE_TOKEN () { 5 }
296    sub CHARACTER_TOKEN () { 6 }
297    
298    sub AFTER_HTML_IMS () { 0b100 }
299    sub HEAD_IMS ()       { 0b1000 }
300    sub BODY_IMS ()       { 0b10000 }
301    sub BODY_TABLE_IMS () { 0b100000 }
302    sub TABLE_IMS ()      { 0b1000000 }
303    sub ROW_IMS ()        { 0b10000000 }
304    sub BODY_AFTER_IMS () { 0b100000000 }
305    sub FRAME_IMS ()      { 0b1000000000 }
306    sub SELECT_IMS ()     { 0b10000000000 }
307    
308    ## NOTE: "initial" and "before html" insertion modes have no constants.
309    
310    ## NOTE: "after after body" insertion mode.
311    sub AFTER_HTML_BODY_IM () { AFTER_HTML_IMS | BODY_AFTER_IMS }
312    
313    ## NOTE: "after after frameset" insertion mode.
314    sub AFTER_HTML_FRAMESET_IM () { AFTER_HTML_IMS | FRAME_IMS }
315    
316    sub IN_HEAD_IM () { HEAD_IMS | 0b00 }
317    sub IN_HEAD_NOSCRIPT_IM () { HEAD_IMS | 0b01 }
318    sub AFTER_HEAD_IM () { HEAD_IMS | 0b10 }
319    sub BEFORE_HEAD_IM () { HEAD_IMS | 0b11 }
320    sub IN_BODY_IM () { BODY_IMS }
321    sub IN_CELL_IM () { BODY_IMS | BODY_TABLE_IMS | 0b01 }
322    sub IN_CAPTION_IM () { BODY_IMS | BODY_TABLE_IMS | 0b10 }
323    sub IN_ROW_IM () { TABLE_IMS | ROW_IMS | 0b01 }
324    sub IN_TABLE_BODY_IM () { TABLE_IMS | ROW_IMS | 0b10 }
325    sub IN_TABLE_IM () { TABLE_IMS }
326    sub AFTER_BODY_IM () { BODY_AFTER_IMS }
327    sub IN_FRAMESET_IM () { FRAME_IMS | 0b01 }
328    sub AFTER_FRAMESET_IM () { FRAME_IMS | 0b10 }
329    sub IN_SELECT_IM () { SELECT_IMS | 0b01 }
330    sub IN_SELECT_IN_TABLE_IM () { SELECT_IMS | 0b10 }
331    sub IN_COLUMN_GROUP_IM () { 0b10 }
332    
333  ## Implementations MUST act as if state machine in the spec  ## Implementations MUST act as if state machine in the spec
334    
335  sub _initialize_tokenizer ($) {  sub _initialize_tokenizer ($) {
336    my $self = shift;    my $self = shift;
337    $self->{state} = 'data'; # MUST    $self->{state} = DATA_STATE; # MUST
338    $self->{content_model_flag} = 'PCDATA'; # be    $self->{content_model} = PCDATA_CONTENT_MODEL; # be
339    undef $self->{current_token}; # start tag, end tag, comment, or DOCTYPE    undef $self->{current_token}; # start tag, end tag, comment, or DOCTYPE
340    undef $self->{current_attribute};    undef $self->{current_attribute};
341    undef $self->{last_emitted_start_tag_name};    undef $self->{last_emitted_start_tag_name};
342    undef $self->{last_attribute_value_state};    undef $self->{last_attribute_value_state};
343    $self->{char} = [];    $self->{char} = [];
344    # $self->{next_input_character}    # $self->{next_char}
345    !!!next-input-character;    !!!next-input-character;
346    $self->{token} = [];    $self->{token} = [];
347      # $self->{escape}
348  } # _initialize_tokenizer  } # _initialize_tokenizer
349    
350  ## A token has:  ## A token has:
351  ##   ->{type} eq 'DOCTYPE', 'start tag', 'end tag', 'comment',  ##   ->{type} == DOCTYPE_TOKEN, START_TAG_TOKEN, END_TAG_TOKEN, COMMENT_TOKEN,
352  ##       'character', or 'end-of-file'  ##       CHARACTER_TOKEN, or END_OF_FILE_TOKEN
353  ##   ->{name} (DOCTYPE, start tag (tagname), end tag (tagname))  ##   ->{name} (DOCTYPE_TOKEN)
354      ## ISSUE: the spec need s/tagname/tag name/  ##   ->{tag_name} (START_TAG_TOKEN, END_TAG_TOKEN)
355  ##   ->{error} == 1 or 0 (DOCTYPE)  ##   ->{public_identifier} (DOCTYPE_TOKEN)
356  ##   ->{attributes} isa HASH (start tag, end tag)  ##   ->{system_identifier} (DOCTYPE_TOKEN)
357  ##   ->{data} (comment, character)  ##   ->{quirks} == 1 or 0 (DOCTYPE_TOKEN): "force-quirks" flag
358    ##   ->{attributes} isa HASH (START_TAG_TOKEN, END_TAG_TOKEN)
359  ## Macros  ##        ->{name}
360  ##   Macros MUST be preceded by three EXCLAMATION MARKs.  ##        ->{value}
361  ##   emit ($token)  ##        ->{has_reference} == 1 or 0
362  ##     Emits the specified token.  ##   ->{data} (COMMENT_TOKEN, CHARACTER_TOKEN)
363    
364  ## Emitted token MUST immediately be handled by the tree construction state.  ## Emitted token MUST immediately be handled by the tree construction state.
365    
# Line 395  sub _initialize_tokenizer ($) { Line 369  sub _initialize_tokenizer ($) {
369  ## has completed loading.  If one has, then it MUST be executed  ## has completed loading.  If one has, then it MUST be executed
370  ## and removed from the list.  ## and removed from the list.
371    
372    ## NOTE: HTML5 "Writing HTML documents" section, applied to
373    ## documents and not to user agents and conformance checkers,
374    ## contains some requirements that are not detected by the
375    ## parsing algorithm:
376    ## - Some requirements on character encoding declarations. ## TODO
377    ## - "Elements MUST NOT contain content that their content model disallows."
378    ##   ... Some are parse error, some are not (will be reported by c.c.).
379    ## - Polytheistic slash SHOULD NOT be used. (Applied only to atheists.) ## TODO
380    ## - Text (in elements, attributes, and comments) SHOULD NOT contain
381    ##   control characters other than space characters. ## TODO: (what is control character? C0, C1 and DEL?  Unicode control character?)
382    
383    ## TODO: HTML5 poses authors two SHOULD-level requirements that cannot
384    ## be detected by the HTML5 parsing algorithm:
385    ## - Text,
386    
387  sub _get_next_token ($) {  sub _get_next_token ($) {
388    my $self = shift;    my $self = shift;
389    if (@{$self->{token}}) {    if (@{$self->{token}}) {
# Line 402  sub _get_next_token ($) { Line 391  sub _get_next_token ($) {
391    }    }
392    
393    A: {    A: {
394      if ($self->{state} eq 'data') {      if ($self->{state} == DATA_STATE) {
395        if ($self->{next_input_character} == 0x0026) { # &        if ($self->{next_char} == 0x0026) { # &
396          if ($self->{content_model_flag} eq 'PCDATA' or          if ($self->{content_model} & CM_ENTITY and # PCDATA | RCDATA
397              $self->{content_model_flag} eq 'RCDATA') {              not $self->{escape}) {
398            $self->{state} = 'entity data';            !!!cp (1);
399              $self->{state} = ENTITY_DATA_STATE;
400            !!!next-input-character;            !!!next-input-character;
401            redo A;            redo A;
402          } else {          } else {
403              !!!cp (2);
404            #            #
405          }          }
406        } elsif ($self->{next_input_character} == 0x003C) { # <        } elsif ($self->{next_char} == 0x002D) { # -
407          if ($self->{content_model_flag} ne 'PLAINTEXT') {          if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
408            $self->{state} = 'tag open';            unless ($self->{escape}) {
409                if ($self->{prev_char}->[0] == 0x002D and # -
410                    $self->{prev_char}->[1] == 0x0021 and # !
411                    $self->{prev_char}->[2] == 0x003C) { # <
412                  !!!cp (3);
413                  $self->{escape} = 1;
414                } else {
415                  !!!cp (4);
416                }
417              } else {
418                !!!cp (5);
419              }
420            }
421            
422            #
423          } elsif ($self->{next_char} == 0x003C) { # <
424            if ($self->{content_model} & CM_FULL_MARKUP or # PCDATA
425                (($self->{content_model} & CM_LIMITED_MARKUP) and # CDATA | RCDATA
426                 not $self->{escape})) {
427              !!!cp (6);
428              $self->{state} = TAG_OPEN_STATE;
429            !!!next-input-character;            !!!next-input-character;
430            redo A;            redo A;
431          } else {          } else {
432              !!!cp (7);
433            #            #
434          }          }
435        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == 0x003E) { # >
436          !!!emit ({type => 'end-of-file'});          if ($self->{escape} and
437                ($self->{content_model} & CM_LIMITED_MARKUP)) { # RCDATA | CDATA
438              if ($self->{prev_char}->[0] == 0x002D and # -
439                  $self->{prev_char}->[1] == 0x002D) { # -
440                !!!cp (8);
441                delete $self->{escape};
442              } else {
443                !!!cp (9);
444              }
445            } else {
446              !!!cp (10);
447            }
448            
449            #
450          } elsif ($self->{next_char} == -1) {
451            !!!cp (11);
452            !!!emit ({type => END_OF_FILE_TOKEN});
453          last A; ## TODO: ok?          last A; ## TODO: ok?
454          } else {
455            !!!cp (12);
456        }        }
457        # Anything else        # Anything else
458        my $token = {type => 'character',        my $token = {type => CHARACTER_TOKEN,
459                     data => chr $self->{next_input_character}};                     data => chr $self->{next_char}};
460        ## Stay in the data state        ## Stay in the data state
461        !!!next-input-character;        !!!next-input-character;
462    
463        !!!emit ($token);        !!!emit ($token);
464    
465        redo A;        redo A;
466      } elsif ($self->{state} eq 'entity data') {      } elsif ($self->{state} == ENTITY_DATA_STATE) {
467        ## (cannot happen in CDATA state)        ## (cannot happen in CDATA state)
468                
469        my $token = $self->_tokenize_attempt_to_consume_an_entity;        my $token = $self->_tokenize_attempt_to_consume_an_entity (0, -1);
470    
471        $self->{state} = 'data';        $self->{state} = DATA_STATE;
472        # next-input-character is already done        # next-input-character is already done
473    
474        unless (defined $token) {        unless (defined $token) {
475          !!!emit ({type => 'character', data => '&'});          !!!cp (13);
476            !!!emit ({type => CHARACTER_TOKEN, data => '&'});
477        } else {        } else {
478            !!!cp (14);
479          !!!emit ($token);          !!!emit ($token);
480        }        }
481    
482        redo A;        redo A;
483      } elsif ($self->{state} eq 'tag open') {      } elsif ($self->{state} == TAG_OPEN_STATE) {
484        if ($self->{content_model_flag} eq 'RCDATA' or        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
485            $self->{content_model_flag} eq 'CDATA') {          if ($self->{next_char} == 0x002F) { # /
486          if ($self->{next_input_character} == 0x002F) { # /            !!!cp (15);
487            !!!next-input-character;            !!!next-input-character;
488            $self->{state} = 'close tag open';            $self->{state} = CLOSE_TAG_OPEN_STATE;
489            redo A;            redo A;
490          } else {          } else {
491              !!!cp (16);
492            ## reconsume            ## reconsume
493            $self->{state} = 'data';            $self->{state} = DATA_STATE;
494    
495            !!!emit ({type => 'character', data => '<'});            !!!emit ({type => CHARACTER_TOKEN, data => '<'});
496    
497            redo A;            redo A;
498          }          }
499        } elsif ($self->{content_model_flag} eq 'PCDATA') {        } elsif ($self->{content_model} & CM_FULL_MARKUP) { # PCDATA
500          if ($self->{next_input_character} == 0x0021) { # !          if ($self->{next_char} == 0x0021) { # !
501            $self->{state} = 'markup declaration open';            !!!cp (17);
502              $self->{state} = MARKUP_DECLARATION_OPEN_STATE;
503            !!!next-input-character;            !!!next-input-character;
504            redo A;            redo A;
505          } elsif ($self->{next_input_character} == 0x002F) { # /          } elsif ($self->{next_char} == 0x002F) { # /
506            $self->{state} = 'close tag open';            !!!cp (18);
507              $self->{state} = CLOSE_TAG_OPEN_STATE;
508            !!!next-input-character;            !!!next-input-character;
509            redo A;            redo A;
510          } elsif (0x0041 <= $self->{next_input_character} and          } elsif (0x0041 <= $self->{next_char} and
511                   $self->{next_input_character} <= 0x005A) { # A..Z                   $self->{next_char} <= 0x005A) { # A..Z
512              !!!cp (19);
513            $self->{current_token}            $self->{current_token}
514              = {type => 'start tag',              = {type => START_TAG_TOKEN,
515                 tag_name => chr ($self->{next_input_character} + 0x0020)};                 tag_name => chr ($self->{next_char} + 0x0020)};
516            $self->{state} = 'tag name';            $self->{state} = TAG_NAME_STATE;
517            !!!next-input-character;            !!!next-input-character;
518            redo A;            redo A;
519          } elsif (0x0061 <= $self->{next_input_character} and          } elsif (0x0061 <= $self->{next_char} and
520                   $self->{next_input_character} <= 0x007A) { # a..z                   $self->{next_char} <= 0x007A) { # a..z
521            $self->{current_token} = {type => 'start tag',            !!!cp (20);
522                              tag_name => chr ($self->{next_input_character})};            $self->{current_token} = {type => START_TAG_TOKEN,
523            $self->{state} = 'tag name';                              tag_name => chr ($self->{next_char})};
524              $self->{state} = TAG_NAME_STATE;
525            !!!next-input-character;            !!!next-input-character;
526            redo A;            redo A;
527          } elsif ($self->{next_input_character} == 0x003E) { # >          } elsif ($self->{next_char} == 0x003E) { # >
528            !!!parse-error;            !!!cp (21);
529            $self->{state} = 'data';            !!!parse-error (type => 'empty start tag');
530              $self->{state} = DATA_STATE;
531            !!!next-input-character;            !!!next-input-character;
532    
533            !!!emit ({type => 'character', data => '<>'});            !!!emit ({type => CHARACTER_TOKEN, data => '<>'});
534    
535            redo A;            redo A;
536          } elsif ($self->{next_input_character} == 0x003F) { # ?          } elsif ($self->{next_char} == 0x003F) { # ?
537            !!!parse-error;            !!!cp (22);
538            $self->{state} = 'bogus comment';            !!!parse-error (type => 'pio');
539            ## $self->{next_input_character} is intentionally left as is            $self->{state} = BOGUS_COMMENT_STATE;
540              ## $self->{next_char} is intentionally left as is
541            redo A;            redo A;
542          } else {          } else {
543            !!!parse-error;            !!!cp (23);
544            $self->{state} = 'data';            !!!parse-error (type => 'bare stago');
545              $self->{state} = DATA_STATE;
546            ## reconsume            ## reconsume
547    
548            !!!emit ({type => 'character', data => '<'});            !!!emit ({type => CHARACTER_TOKEN, data => '<'});
549    
550            redo A;            redo A;
551          }          }
552        } else {        } else {
553          die "$0: $self->{content_model_flag}: Unknown content model flag";          die "$0: $self->{content_model} in tag open";
554        }        }
555      } elsif ($self->{state} eq 'close tag open') {      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {
556        if ($self->{content_model_flag} eq 'RCDATA' or        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
557            $self->{content_model_flag} eq 'CDATA') {          if (defined $self->{last_emitted_start_tag_name}) {
558          my @next_char;            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>
559          TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) {            my @next_char;
560            push @next_char, $self->{next_input_character};            TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) {
561            my $c = ord substr ($self->{last_emitted_start_tag_name}, $i, 1);              push @next_char, $self->{next_char};
562            my $C = 0x0061 <= $c && $c <= 0x007A ? $c - 0x0020 : $c;              my $c = ord substr ($self->{last_emitted_start_tag_name}, $i, 1);
563            if ($self->{next_input_character} == $c or $self->{next_input_character} == $C) {              my $C = 0x0061 <= $c && $c <= 0x007A ? $c - 0x0020 : $c;
564              !!!next-input-character;              if ($self->{next_char} == $c or $self->{next_char} == $C) {
565              next TAGNAME;                !!!cp (24);
566            } else {                !!!next-input-character;
567              !!!parse-error;                next TAGNAME;
568              $self->{next_input_character} = shift @next_char; # reconsume              } else {
569              !!!back-next-input-character (@next_char);                !!!cp (25);
570              $self->{state} = 'data';                $self->{next_char} = shift @next_char; # reconsume
571                  !!!back-next-input-character (@next_char);
572              !!!emit ({type => 'character', data => '</'});                $self->{state} = DATA_STATE;
573    
574                  !!!emit ({type => CHARACTER_TOKEN, data => '</'});
575      
576                  redo A;
577                }
578              }
579              push @next_char, $self->{next_char};
580          
581              unless ($self->{next_char} == 0x0009 or # HT
582                      $self->{next_char} == 0x000A or # LF
583                      $self->{next_char} == 0x000B or # VT
584                      $self->{next_char} == 0x000C or # FF
585                      $self->{next_char} == 0x0020 or # SP
586                      $self->{next_char} == 0x003E or # >
587                      $self->{next_char} == 0x002F or # /
588                      $self->{next_char} == -1) {
589                !!!cp (26);
590                $self->{next_char} = shift @next_char; # reconsume
591                !!!back-next-input-character (@next_char);
592                $self->{state} = DATA_STATE;
593                !!!emit ({type => CHARACTER_TOKEN, data => '</'});
594              redo A;              redo A;
595              } else {
596                !!!cp (27);
597                $self->{next_char} = shift @next_char;
598                !!!back-next-input-character (@next_char);
599                # and consume...
600            }            }
         }  
         push @next_char, $self->{next_input_character};  
       
         unless ($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 or # SP  
                 $self->{next_input_character} == 0x003E or # >  
                 $self->{next_input_character} == 0x002F or # /  
                 $self->{next_input_character} == 0x003C or # <  
                 $self->{next_input_character} == -1) {  
           !!!parse-error;  
           $self->{next_input_character} = shift @next_char; # reconsume  
           !!!back-next-input-character (@next_char);  
           $self->{state} = 'data';  
   
           !!!emit ({type => 'character', data => '</'});  
   
           redo A;  
601          } else {          } else {
602            $self->{next_input_character} = shift @next_char;            ## No start tag token has ever been emitted
603            !!!back-next-input-character (@next_char);            !!!cp (28);
604            # and consume...            # next-input-character is already done
605              $self->{state} = DATA_STATE;
606              !!!emit ({type => CHARACTER_TOKEN, data => '</'});
607              redo A;
608          }          }
609        }        }
610                
611        if (0x0041 <= $self->{next_input_character} and        if (0x0041 <= $self->{next_char} and
612            $self->{next_input_character} <= 0x005A) { # A..Z            $self->{next_char} <= 0x005A) { # A..Z
613          $self->{current_token} = {type => 'end tag',          !!!cp (29);
614                            tag_name => chr ($self->{next_input_character} + 0x0020)};          $self->{current_token} = {type => END_TAG_TOKEN,
615          $self->{state} = 'tag name';                            tag_name => chr ($self->{next_char} + 0x0020)};
616          !!!next-input-character;          $self->{state} = TAG_NAME_STATE;
617          redo A;          !!!next-input-character;
618        } elsif (0x0061 <= $self->{next_input_character} and          redo A;
619                 $self->{next_input_character} <= 0x007A) { # a..z        } elsif (0x0061 <= $self->{next_char} and
620          $self->{current_token} = {type => 'end tag',                 $self->{next_char} <= 0x007A) { # a..z
621                            tag_name => chr ($self->{next_input_character})};          !!!cp (30);
622          $self->{state} = 'tag name';          $self->{current_token} = {type => END_TAG_TOKEN,
623          !!!next-input-character;                            tag_name => chr ($self->{next_char})};
624          redo A;          $self->{state} = TAG_NAME_STATE;
625        } elsif ($self->{next_input_character} == 0x003E) { # >          !!!next-input-character;
626          !!!parse-error;          redo A;
627          $self->{state} = 'data';        } elsif ($self->{next_char} == 0x003E) { # >
628          !!!next-input-character;          !!!cp (31);
629          redo A;          !!!parse-error (type => 'empty end tag');
630        } elsif ($self->{next_input_character} == -1) {          $self->{state} = DATA_STATE;
631          !!!parse-error;          !!!next-input-character;
632          $self->{state} = 'data';          redo A;
633          } elsif ($self->{next_char} == -1) {
634            !!!cp (32);
635            !!!parse-error (type => 'bare etago');
636            $self->{state} = DATA_STATE;
637          # reconsume          # reconsume
638    
639          !!!emit ({type => 'character', data => '</'});          !!!emit ({type => CHARACTER_TOKEN, data => '</'});
640    
641          redo A;          redo A;
642        } else {        } else {
643          !!!parse-error;          !!!cp (33);
644          $self->{state} = 'bogus comment';          !!!parse-error (type => 'bogus end tag');
645          ## $self->{next_input_character} is intentionally left as is          $self->{state} = BOGUS_COMMENT_STATE;
646          redo A;          ## $self->{next_char} is intentionally left as is
647        }          redo A;
648      } elsif ($self->{state} eq 'tag name') {        }
649        if ($self->{next_input_character} == 0x0009 or # HT      } elsif ($self->{state} == TAG_NAME_STATE) {
650            $self->{next_input_character} == 0x000A or # LF        if ($self->{next_char} == 0x0009 or # HT
651            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000A or # LF
652            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000B or # VT
653            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x000C or # FF
654          $self->{state} = 'before attribute name';            $self->{next_char} == 0x0020) { # SP
655          !!!next-input-character;          !!!cp (34);
656          redo A;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
657        } elsif ($self->{next_input_character} == 0x003E) { # >          !!!next-input-character;
658          if ($self->{current_token}->{type} eq 'start tag') {          redo A;
659          } elsif ($self->{next_char} == 0x003E) { # >
660            if ($self->{current_token}->{type} == START_TAG_TOKEN) {
661              !!!cp (35);
662              $self->{current_token}->{first_start_tag}
663                  = not defined $self->{last_emitted_start_tag_name};
664            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
665          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
666            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
667            if ($self->{current_token}->{attributes}) {            #if ($self->{current_token}->{attributes}) {
668              !!!parse-error;            #  ## NOTE: This should never be reached.
669            }            #  !!! cp (36);
670              #  !!! parse-error (type => 'end tag attribute');
671              #} else {
672                !!!cp (37);
673              #}
674          } else {          } else {
675            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
676          }          }
677          $self->{state} = 'data';          $self->{state} = DATA_STATE;
678          !!!next-input-character;          !!!next-input-character;
679    
680          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
681    
682          redo A;          redo A;
683        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
684                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
685          $self->{current_token}->{tag_name} .= chr ($self->{next_input_character} + 0x0020);          !!!cp (38);
686            $self->{current_token}->{tag_name} .= chr ($self->{next_char} + 0x0020);
687            # start tag or end tag            # start tag or end tag
688          ## Stay in this state          ## Stay in this state
689          !!!next-input-character;          !!!next-input-character;
690          redo A;          redo A;
691        } elsif ($self->{next_input_character} == 0x003C or # <        } elsif ($self->{next_char} == -1) {
692                 $self->{next_input_character} == -1) {          !!!parse-error (type => 'unclosed tag');
693          !!!parse-error;          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
694          if ($self->{current_token}->{type} eq 'start tag') {            !!!cp (39);
695              $self->{current_token}->{first_start_tag}
696                  = not defined $self->{last_emitted_start_tag_name};
697            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
698          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
699            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
700            if ($self->{current_token}->{attributes}) {            #if ($self->{current_token}->{attributes}) {
701              !!!parse-error;            #  ## NOTE: This state should never be reached.
702            }            #  !!! cp (40);
703              #  !!! parse-error (type => 'end tag attribute');
704              #} else {
705                !!!cp (41);
706              #}
707          } else {          } else {
708            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
709          }          }
710          $self->{state} = 'data';          $self->{state} = DATA_STATE;
711          # reconsume          # reconsume
712    
713          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
714    
715          redo A;          redo A;
716        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
717          !!!next-input-character;          !!!next-input-character;
718          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
719              $self->{current_token}->{type} eq 'start tag' and              $self->{current_token}->{type} == START_TAG_TOKEN and
720              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
721            # permitted slash            # permitted slash
722              !!!cp (42);
723            #            #
724          } else {          } else {
725            !!!parse-error;            !!!cp (43);
726              !!!parse-error (type => 'nestc');
727          }          }
728          $self->{state} = 'before attribute name';          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
729          # next-input-character is already done          # next-input-character is already done
730          redo A;          redo A;
731        } else {        } else {
732          $self->{current_token}->{tag_name} .= chr $self->{next_input_character};          !!!cp (44);
733            $self->{current_token}->{tag_name} .= chr $self->{next_char};
734            # start tag or end tag            # start tag or end tag
735          ## Stay in the state          ## Stay in the state
736          !!!next-input-character;          !!!next-input-character;
737          redo A;          redo A;
738        }        }
739      } elsif ($self->{state} eq 'before attribute name') {      } elsif ($self->{state} == BEFORE_ATTRIBUTE_NAME_STATE) {
740        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
741            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
742            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
743            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
744            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
745            !!!cp (45);
746          ## Stay in the state          ## Stay in the state
747          !!!next-input-character;          !!!next-input-character;
748          redo A;          redo A;
749        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
750          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
751              !!!cp (46);
752              $self->{current_token}->{first_start_tag}
753                  = not defined $self->{last_emitted_start_tag_name};
754            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
755          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
756            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
757            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
758              !!!parse-error;              !!!cp (47);
759                !!!parse-error (type => 'end tag attribute');
760              } else {
761                !!!cp (48);
762            }            }
763          } else {          } else {
764            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
765          }          }
766          $self->{state} = 'data';          $self->{state} = DATA_STATE;
767          !!!next-input-character;          !!!next-input-character;
768    
769          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
770    
771          redo A;          redo A;
772        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
773                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
774          $self->{current_attribute} = {name => chr ($self->{next_input_character} + 0x0020),          !!!cp (49);
775            $self->{current_attribute} = {name => chr ($self->{next_char} + 0x0020),
776                                value => ''};                                value => ''};
777          $self->{state} = 'attribute name';          $self->{state} = ATTRIBUTE_NAME_STATE;
778          !!!next-input-character;          !!!next-input-character;
779          redo A;          redo A;
780        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
781          !!!next-input-character;          !!!next-input-character;
782          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
783              $self->{current_token}->{type} eq 'start tag' and              $self->{current_token}->{type} == START_TAG_TOKEN and
784              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
785            # permitted slash            # permitted slash
786              !!!cp (50);
787            #            #
788          } else {          } else {
789            !!!parse-error;            !!!cp (51);
790              !!!parse-error (type => 'nestc');
791          }          }
792          ## Stay in the state          ## Stay in the state
793          # next-input-character is already done          # next-input-character is already done
794          redo A;          redo A;
795        } elsif ($self->{next_input_character} == 0x003C or # <        } elsif ($self->{next_char} == -1) {
796                 $self->{next_input_character} == -1) {          !!!parse-error (type => 'unclosed tag');
797          !!!parse-error;          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
798          if ($self->{current_token}->{type} eq 'start tag') {            !!!cp (52);
799              $self->{current_token}->{first_start_tag}
800                  = not defined $self->{last_emitted_start_tag_name};
801            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
802          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
803            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
804            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
805              !!!parse-error;              !!!cp (53);
806                !!!parse-error (type => 'end tag attribute');
807              } else {
808                !!!cp (54);
809            }            }
810          } else {          } else {
811            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
812          }          }
813          $self->{state} = 'data';          $self->{state} = DATA_STATE;
814          # reconsume          # reconsume
815    
816          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
817    
818          redo A;          redo A;
819        } else {        } else {
820          $self->{current_attribute} = {name => chr ($self->{next_input_character}),          if ({
821                 0x0022 => 1, # "
822                 0x0027 => 1, # '
823                 0x003D => 1, # =
824                }->{$self->{next_char}}) {
825              !!!cp (55);
826              !!!parse-error (type => 'bad attribute name');
827            } else {
828              !!!cp (56);
829            }
830            $self->{current_attribute} = {name => chr ($self->{next_char}),
831                                value => ''};                                value => ''};
832          $self->{state} = 'attribute name';          $self->{state} = ATTRIBUTE_NAME_STATE;
833          !!!next-input-character;          !!!next-input-character;
834          redo A;          redo A;
835        }        }
836      } elsif ($self->{state} eq 'attribute name') {      } elsif ($self->{state} == ATTRIBUTE_NAME_STATE) {
837        my $before_leave = sub {        my $before_leave = sub {
838          if (exists $self->{current_token}->{attributes} # start tag or end tag          if (exists $self->{current_token}->{attributes} # start tag or end tag
839              ->{$self->{current_attribute}->{name}}) { # MUST              ->{$self->{current_attribute}->{name}}) { # MUST
840            !!!parse-error;            !!!cp (57);
841              !!!parse-error (type => 'duplicate attribute:'.$self->{current_attribute}->{name});
842            ## Discard $self->{current_attribute} # MUST            ## Discard $self->{current_attribute} # MUST
843          } else {          } else {
844              !!!cp (58);
845            $self->{current_token}->{attributes}->{$self->{current_attribute}->{name}}            $self->{current_token}->{attributes}->{$self->{current_attribute}->{name}}
846              = $self->{current_attribute};              = $self->{current_attribute};
847          }          }
848        }; # $before_leave        }; # $before_leave
849    
850        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
851            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
852            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
853            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
854            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
855            !!!cp (59);
856          $before_leave->();          $before_leave->();
857          $self->{state} = 'after attribute name';          $self->{state} = AFTER_ATTRIBUTE_NAME_STATE;
858          !!!next-input-character;          !!!next-input-character;
859          redo A;          redo A;
860        } elsif ($self->{next_input_character} == 0x003D) { # =        } elsif ($self->{next_char} == 0x003D) { # =
861            !!!cp (60);
862          $before_leave->();          $before_leave->();
863          $self->{state} = 'before attribute value';          $self->{state} = BEFORE_ATTRIBUTE_VALUE_STATE;
864          !!!next-input-character;          !!!next-input-character;
865          redo A;          redo A;
866        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
867          $before_leave->();          $before_leave->();
868          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
869              !!!cp (61);
870              $self->{current_token}->{first_start_tag}
871                  = not defined $self->{last_emitted_start_tag_name};
872            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
873          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
874            $self->{content_model_flag} = 'PCDATA'; # MUST            !!!cp (62);
875              $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
876            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
877              !!!parse-error;              !!!parse-error (type => 'end tag attribute');
878            }            }
879          } else {          } else {
880            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
881          }          }
882          $self->{state} = 'data';          $self->{state} = DATA_STATE;
883          !!!next-input-character;          !!!next-input-character;
884    
885          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
886    
887          redo A;          redo A;
888        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
889                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
890          $self->{current_attribute}->{name} .= chr ($self->{next_input_character} + 0x0020);          !!!cp (63);
891            $self->{current_attribute}->{name} .= chr ($self->{next_char} + 0x0020);
892          ## Stay in the state          ## Stay in the state
893          !!!next-input-character;          !!!next-input-character;
894          redo A;          redo A;
895        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
896          $before_leave->();          $before_leave->();
897          !!!next-input-character;          !!!next-input-character;
898          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
899              $self->{current_token}->{type} eq 'start tag' and              $self->{current_token}->{type} == START_TAG_TOKEN and
900              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
901            # permitted slash            # permitted slash
902              !!!cp (64);
903            #            #
904          } else {          } else {
905            !!!parse-error;            !!!cp (65);
906              !!!parse-error (type => 'nestc');
907          }          }
908          $self->{state} = 'before attribute name';          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
909          # next-input-character is already done          # next-input-character is already done
910          redo A;          redo A;
911        } elsif ($self->{next_input_character} == 0x003C or # <        } elsif ($self->{next_char} == -1) {
912                 $self->{next_input_character} == -1) {          !!!parse-error (type => 'unclosed tag');
         !!!parse-error;  
913          $before_leave->();          $before_leave->();
914          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
915              !!!cp (66);
916              $self->{current_token}->{first_start_tag}
917                  = not defined $self->{last_emitted_start_tag_name};
918            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
919          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
920            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
921            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
922              !!!parse-error;              !!!cp (67);
923                !!!parse-error (type => 'end tag attribute');
924              } else {
925                ## NOTE: This state should never be reached.
926                !!!cp (68);
927            }            }
928          } else {          } else {
929            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
930          }          }
931          $self->{state} = 'data';          $self->{state} = DATA_STATE;
932          # reconsume          # reconsume
933    
934          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
935    
936          redo A;          redo A;
937        } else {        } else {
938          $self->{current_attribute}->{name} .= chr ($self->{next_input_character});          if ($self->{next_char} == 0x0022 or # "
939                $self->{next_char} == 0x0027) { # '
940              !!!cp (69);
941              !!!parse-error (type => 'bad attribute name');
942            } else {
943              !!!cp (70);
944            }
945            $self->{current_attribute}->{name} .= chr ($self->{next_char});
946          ## Stay in the state          ## Stay in the state
947          !!!next-input-character;          !!!next-input-character;
948          redo A;          redo A;
949        }        }
950      } elsif ($self->{state} eq 'after attribute name') {      } elsif ($self->{state} == AFTER_ATTRIBUTE_NAME_STATE) {
951        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
952            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
953            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
954            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
955            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
956            !!!cp (71);
957          ## Stay in the state          ## Stay in the state
958          !!!next-input-character;          !!!next-input-character;
959          redo A;          redo A;
960        } elsif ($self->{next_input_character} == 0x003D) { # =        } elsif ($self->{next_char} == 0x003D) { # =
961          $self->{state} = 'before attribute value';          !!!cp (72);
962            $self->{state} = BEFORE_ATTRIBUTE_VALUE_STATE;
963          !!!next-input-character;          !!!next-input-character;
964          redo A;          redo A;
965        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
966          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
967              !!!cp (73);
968              $self->{current_token}->{first_start_tag}
969                  = not defined $self->{last_emitted_start_tag_name};
970            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
971          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
972            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
973            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
974              !!!parse-error;              !!!cp (74);
975                !!!parse-error (type => 'end tag attribute');
976              } else {
977                ## NOTE: This state should never be reached.
978                !!!cp (75);
979            }            }
980          } else {          } else {
981            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
982          }          }
983          $self->{state} = 'data';          $self->{state} = DATA_STATE;
984          !!!next-input-character;          !!!next-input-character;
985    
986          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
987    
988          redo A;          redo A;
989        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
990                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
991          $self->{current_attribute} = {name => chr ($self->{next_input_character} + 0x0020),          !!!cp (76);
992            $self->{current_attribute} = {name => chr ($self->{next_char} + 0x0020),
993                                value => ''};                                value => ''};
994          $self->{state} = 'attribute name';          $self->{state} = ATTRIBUTE_NAME_STATE;
995          !!!next-input-character;          !!!next-input-character;
996          redo A;          redo A;
997        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
998          !!!next-input-character;          !!!next-input-character;
999          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
1000              $self->{current_token}->{type} eq 'start tag' and              $self->{current_token}->{type} == START_TAG_TOKEN and
1001              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
1002            # permitted slash            # permitted slash
1003              !!!cp (77);
1004            #            #
1005          } else {          } else {
1006            !!!parse-error;            !!!cp (78);
1007              !!!parse-error (type => 'nestc');
1008              ## TODO: Different error type for <aa / bb> than <aa/>
1009          }          }
1010          $self->{state} = 'before attribute name';          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1011          # next-input-character is already done          # next-input-character is already done
1012          redo A;          redo A;
1013        } elsif ($self->{next_input_character} == 0x003C or # <        } elsif ($self->{next_char} == -1) {
1014                 $self->{next_input_character} == -1) {          !!!parse-error (type => 'unclosed tag');
1015          !!!parse-error;          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1016          if ($self->{current_token}->{type} eq 'start tag') {            !!!cp (79);
1017              $self->{current_token}->{first_start_tag}
1018                  = not defined $self->{last_emitted_start_tag_name};
1019            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1020          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1021            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1022            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1023              !!!parse-error;              !!!cp (80);
1024                !!!parse-error (type => 'end tag attribute');
1025              } else {
1026                ## NOTE: This state should never be reached.
1027                !!!cp (81);
1028            }            }
1029          } else {          } else {
1030            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1031          }          }
1032          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1033          # reconsume          # reconsume
1034    
1035          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
1036    
1037          redo A;          redo A;
1038        } else {        } else {
1039          $self->{current_attribute} = {name => chr ($self->{next_input_character}),          !!!cp (82);
1040            $self->{current_attribute} = {name => chr ($self->{next_char}),
1041                                value => ''};                                value => ''};
1042          $self->{state} = 'attribute name';          $self->{state} = ATTRIBUTE_NAME_STATE;
1043          !!!next-input-character;          !!!next-input-character;
1044          redo A;                  redo A;        
1045        }        }
1046      } elsif ($self->{state} eq 'before attribute value') {      } elsif ($self->{state} == BEFORE_ATTRIBUTE_VALUE_STATE) {
1047        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1048            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1049            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1050            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1051            $self->{next_input_character} == 0x0020) { # SP                  $self->{next_char} == 0x0020) { # SP      
1052            !!!cp (83);
1053          ## Stay in the state          ## Stay in the state
1054          !!!next-input-character;          !!!next-input-character;
1055          redo A;          redo A;
1056        } elsif ($self->{next_input_character} == 0x0022) { # "        } elsif ($self->{next_char} == 0x0022) { # "
1057          $self->{state} = 'attribute value (double-quoted)';          !!!cp (84);
1058            $self->{state} = ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE;
1059          !!!next-input-character;          !!!next-input-character;
1060          redo A;          redo A;
1061        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1062          $self->{state} = 'attribute value (unquoted)';          !!!cp (85);
1063            $self->{state} = ATTRIBUTE_VALUE_UNQUOTED_STATE;
1064          ## reconsume          ## reconsume
1065          redo A;          redo A;
1066        } elsif ($self->{next_input_character} == 0x0027) { # '        } elsif ($self->{next_char} == 0x0027) { # '
1067          $self->{state} = 'attribute value (single-quoted)';          !!!cp (86);
1068            $self->{state} = ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE;
1069          !!!next-input-character;          !!!next-input-character;
1070          redo A;          redo A;
1071        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1072          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1073              !!!cp (87);
1074              $self->{current_token}->{first_start_tag}
1075                  = not defined $self->{last_emitted_start_tag_name};
1076            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1077          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1078            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1079            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1080              !!!parse-error;              !!!cp (88);
1081                !!!parse-error (type => 'end tag attribute');
1082              } else {
1083                ## NOTE: This state should never be reached.
1084                !!!cp (89);
1085            }            }
1086          } else {          } else {
1087            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1088          }          }
1089          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1090          !!!next-input-character;          !!!next-input-character;
1091    
1092          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
1093    
1094          redo A;          redo A;
1095        } elsif ($self->{next_input_character} == 0x003C or # <        } elsif ($self->{next_char} == -1) {
1096                 $self->{next_input_character} == -1) {          !!!parse-error (type => 'unclosed tag');
1097          !!!parse-error;          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1098          if ($self->{current_token}->{type} eq 'start tag') {            !!!cp (90);
1099              $self->{current_token}->{first_start_tag}
1100                  = not defined $self->{last_emitted_start_tag_name};
1101            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1102          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1103            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1104            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1105              !!!parse-error;              !!!cp (91);
1106                !!!parse-error (type => 'end tag attribute');
1107              } else {
1108                ## NOTE: This state should never be reached.
1109                !!!cp (92);
1110            }            }
1111          } else {          } else {
1112            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1113          }          }
1114          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1115          ## reconsume          ## reconsume
1116    
1117          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
1118    
1119          redo A;          redo A;
1120        } else {        } else {
1121          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          if ($self->{next_char} == 0x003D) { # =
1122          $self->{state} = 'attribute value (unquoted)';            !!!cp (93);
1123              !!!parse-error (type => 'bad attribute value');
1124            } else {
1125              !!!cp (94);
1126            }
1127            $self->{current_attribute}->{value} .= chr ($self->{next_char});
1128            $self->{state} = ATTRIBUTE_VALUE_UNQUOTED_STATE;
1129          !!!next-input-character;          !!!next-input-character;
1130          redo A;          redo A;
1131        }        }
1132      } elsif ($self->{state} eq 'attribute value (double-quoted)') {      } elsif ($self->{state} == ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE) {
1133        if ($self->{next_input_character} == 0x0022) { # "        if ($self->{next_char} == 0x0022) { # "
1134          $self->{state} = 'before attribute name';          !!!cp (95);
1135            $self->{state} = AFTER_ATTRIBUTE_VALUE_QUOTED_STATE;
1136          !!!next-input-character;          !!!next-input-character;
1137          redo A;          redo A;
1138        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1139          $self->{last_attribute_value_state} = 'attribute value (double-quoted)';          !!!cp (96);
1140          $self->{state} = 'entity in attribute value';          $self->{last_attribute_value_state} = $self->{state};
1141            $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;
1142          !!!next-input-character;          !!!next-input-character;
1143          redo A;          redo A;
1144        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1145          !!!parse-error;          !!!parse-error (type => 'unclosed attribute value');
1146          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1147              !!!cp (97);
1148              $self->{current_token}->{first_start_tag}
1149                  = not defined $self->{last_emitted_start_tag_name};
1150            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1151          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1152            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1153            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1154              !!!parse-error;              !!!cp (98);
1155                !!!parse-error (type => 'end tag attribute');
1156              } else {
1157                ## NOTE: This state should never be reached.
1158                !!!cp (99);
1159            }            }
1160          } else {          } else {
1161            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1162          }          }
1163          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1164          ## reconsume          ## reconsume
1165    
1166          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
1167    
1168          redo A;          redo A;
1169        } else {        } else {
1170          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          !!!cp (100);
1171            $self->{current_attribute}->{value} .= chr ($self->{next_char});
1172          ## Stay in the state          ## Stay in the state
1173          !!!next-input-character;          !!!next-input-character;
1174          redo A;          redo A;
1175        }        }
1176      } elsif ($self->{state} eq 'attribute value (single-quoted)') {      } elsif ($self->{state} == ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE) {
1177        if ($self->{next_input_character} == 0x0027) { # '        if ($self->{next_char} == 0x0027) { # '
1178          $self->{state} = 'before attribute name';          !!!cp (101);
1179          !!!next-input-character;          $self->{state} = AFTER_ATTRIBUTE_VALUE_QUOTED_STATE;
1180          redo A;          !!!next-input-character;
1181        } elsif ($self->{next_input_character} == 0x0026) { # &          redo A;
1182          $self->{last_attribute_value_state} = 'attribute value (single-quoted)';        } elsif ($self->{next_char} == 0x0026) { # &
1183          $self->{state} = 'entity in attribute value';          !!!cp (102);
1184          !!!next-input-character;          $self->{last_attribute_value_state} = $self->{state};
1185          redo A;          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;
1186        } elsif ($self->{next_input_character} == -1) {          !!!next-input-character;
1187          !!!parse-error;          redo A;
1188          if ($self->{current_token}->{type} eq 'start tag') {        } elsif ($self->{next_char} == -1) {
1189            !!!parse-error (type => 'unclosed attribute value');
1190            if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1191              !!!cp (103);
1192              $self->{current_token}->{first_start_tag}
1193                  = not defined $self->{last_emitted_start_tag_name};
1194            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1195          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1196            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1197            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1198              !!!parse-error;              !!!cp (104);
1199                !!!parse-error (type => 'end tag attribute');
1200              } else {
1201                ## NOTE: This state should never be reached.
1202                !!!cp (105);
1203            }            }
1204          } else {          } else {
1205            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1206          }          }
1207          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1208          ## reconsume          ## reconsume
1209    
1210          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
1211    
1212          redo A;          redo A;
1213        } else {        } else {
1214          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          !!!cp (106);
1215            $self->{current_attribute}->{value} .= chr ($self->{next_char});
1216          ## Stay in the state          ## Stay in the state
1217          !!!next-input-character;          !!!next-input-character;
1218          redo A;          redo A;
1219        }        }
1220      } elsif ($self->{state} eq 'attribute value (unquoted)') {      } elsif ($self->{state} == ATTRIBUTE_VALUE_UNQUOTED_STATE) {
1221        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1222            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1223            $self->{next_input_character} == 0x000B or # HT            $self->{next_char} == 0x000B or # HT
1224            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1225            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1226          $self->{state} = 'before attribute name';          !!!cp (107);
1227          !!!next-input-character;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1228          redo A;          !!!next-input-character;
1229        } elsif ($self->{next_input_character} == 0x0026) { # &          redo A;
1230          $self->{last_attribute_value_state} = 'attribute value (unquoted)';        } elsif ($self->{next_char} == 0x0026) { # &
1231          $self->{state} = 'entity in attribute value';          !!!cp (108);
1232          !!!next-input-character;          $self->{last_attribute_value_state} = $self->{state};
1233          redo A;          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;
1234        } elsif ($self->{next_input_character} == 0x003E) { # >          !!!next-input-character;
1235          if ($self->{current_token}->{type} eq 'start tag') {          redo A;
1236          } elsif ($self->{next_char} == 0x003E) { # >
1237            if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1238              !!!cp (109);
1239              $self->{current_token}->{first_start_tag}
1240                  = not defined $self->{last_emitted_start_tag_name};
1241            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1242          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1243            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1244            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1245              !!!parse-error;              !!!cp (110);
1246                !!!parse-error (type => 'end tag attribute');
1247              } else {
1248                ## NOTE: This state should never be reached.
1249                !!!cp (111);
1250            }            }
1251          } else {          } else {
1252            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1253          }          }
1254          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1255          !!!next-input-character;          !!!next-input-character;
1256    
1257          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
1258    
1259          redo A;          redo A;
1260        } elsif ($self->{next_input_character} == 0x003C or # <        } elsif ($self->{next_char} == -1) {
1261                 $self->{next_input_character} == -1) {          !!!parse-error (type => 'unclosed tag');
1262          !!!parse-error;          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1263          if ($self->{current_token}->{type} eq 'start tag') {            !!!cp (112);
1264              $self->{current_token}->{first_start_tag}
1265                  = not defined $self->{last_emitted_start_tag_name};
1266            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1267          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1268            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1269            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1270              !!!parse-error;              !!!cp (113);
1271                !!!parse-error (type => 'end tag attribute');
1272              } else {
1273                ## NOTE: This state should never be reached.
1274                !!!cp (114);
1275            }            }
1276          } else {          } else {
1277            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1278          }          }
1279          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1280          ## reconsume          ## reconsume
1281    
1282          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
         undef $self->{current_token};  
1283    
1284          redo A;          redo A;
1285        } else {        } else {
1286          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          if ({
1287                 0x0022 => 1, # "
1288                 0x0027 => 1, # '
1289                 0x003D => 1, # =
1290                }->{$self->{next_char}}) {
1291              !!!cp (115);
1292              !!!parse-error (type => 'bad attribute value');
1293            } else {
1294              !!!cp (116);
1295            }
1296            $self->{current_attribute}->{value} .= chr ($self->{next_char});
1297          ## Stay in the state          ## Stay in the state
1298          !!!next-input-character;          !!!next-input-character;
1299          redo A;          redo A;
1300        }        }
1301      } elsif ($self->{state} eq 'entity in attribute value') {      } elsif ($self->{state} == ENTITY_IN_ATTRIBUTE_VALUE_STATE) {
1302        my $token = $self->_tokenize_attempt_to_consume_an_entity;        my $token = $self->_tokenize_attempt_to_consume_an_entity
1303              (1,
1304               $self->{last_attribute_value_state}
1305                 == ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE ? 0x0022 : # "
1306               $self->{last_attribute_value_state}
1307                 == ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE ? 0x0027 : # '
1308               -1);
1309    
1310        unless (defined $token) {        unless (defined $token) {
1311            !!!cp (117);
1312          $self->{current_attribute}->{value} .= '&';          $self->{current_attribute}->{value} .= '&';
1313        } else {        } else {
1314            !!!cp (118);
1315          $self->{current_attribute}->{value} .= $token->{data};          $self->{current_attribute}->{value} .= $token->{data};
1316            $self->{current_attribute}->{has_reference} = $token->{has_reference};
1317          ## ISSUE: spec says "append the returned character token to the current attribute's value"          ## ISSUE: spec says "append the returned character token to the current attribute's value"
1318        }        }
1319    
1320        $self->{state} = $self->{last_attribute_value_state};        $self->{state} = $self->{last_attribute_value_state};
1321        # next-input-character is already done        # next-input-character is already done
1322        redo A;        redo A;
1323      } elsif ($self->{state} eq 'bogus comment') {      } elsif ($self->{state} == AFTER_ATTRIBUTE_VALUE_QUOTED_STATE) {
1324          if ($self->{next_char} == 0x0009 or # HT
1325              $self->{next_char} == 0x000A or # LF
1326              $self->{next_char} == 0x000B or # VT
1327              $self->{next_char} == 0x000C or # FF
1328              $self->{next_char} == 0x0020) { # SP
1329            !!!cp (118);
1330            $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1331            !!!next-input-character;
1332            redo A;
1333          } elsif ($self->{next_char} == 0x003E) { # >
1334            if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1335              !!!cp (119);
1336              $self->{current_token}->{first_start_tag}
1337                  = not defined $self->{last_emitted_start_tag_name};
1338              $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1339            } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1340              $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1341              if ($self->{current_token}->{attributes}) {
1342                !!!cp (120);
1343                !!!parse-error (type => 'end tag attribute');
1344              } else {
1345                ## NOTE: This state should never be reached.
1346                !!!cp (121);
1347              }
1348            } else {
1349              die "$0: $self->{current_token}->{type}: Unknown token type";
1350            }
1351            $self->{state} = DATA_STATE;
1352            !!!next-input-character;
1353    
1354            !!!emit ($self->{current_token}); # start tag or end tag
1355    
1356            redo A;
1357          } elsif ($self->{next_char} == 0x002F) { # /
1358            !!!next-input-character;
1359            if ($self->{next_char} == 0x003E and # >
1360                $self->{current_token}->{type} == START_TAG_TOKEN and
1361                $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
1362              # permitted slash
1363              !!!cp (122);
1364              #
1365            } else {
1366              !!!cp (123);
1367              !!!parse-error (type => 'nestc');
1368            }
1369            $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1370            # next-input-character is already done
1371            redo A;
1372          } else {
1373            !!!cp (124);
1374            !!!parse-error (type => 'no space between attributes');
1375            $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1376            ## reconsume
1377            redo A;
1378          }
1379        } elsif ($self->{state} == BOGUS_COMMENT_STATE) {
1380        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
1381                
1382        my $token = {type => 'comment', data => ''};        my $token = {type => COMMENT_TOKEN, data => ''};
1383    
1384        BC: {        BC: {
1385          if ($self->{next_input_character} == 0x003E) { # >          if ($self->{next_char} == 0x003E) { # >
1386            $self->{state} = 'data';            !!!cp (124);
1387              $self->{state} = DATA_STATE;
1388            !!!next-input-character;            !!!next-input-character;
1389    
1390            !!!emit ($token);            !!!emit ($token);
1391    
1392            redo A;            redo A;
1393          } elsif ($self->{next_input_character} == -1) {          } elsif ($self->{next_char} == -1) {
1394            $self->{state} = 'data';            !!!cp (125);
1395              $self->{state} = DATA_STATE;
1396            ## reconsume            ## reconsume
1397    
1398            !!!emit ($token);            !!!emit ($token);
1399    
1400            redo A;            redo A;
1401          } else {          } else {
1402            $token->{data} .= chr ($self->{next_input_character});            !!!cp (126);
1403              $token->{data} .= chr ($self->{next_char});
1404            !!!next-input-character;            !!!next-input-character;
1405            redo BC;            redo BC;
1406          }          }
1407        } # BC        } # BC
1408      } elsif ($self->{state} eq 'markup declaration open') {  
1409          die "$0: _get_next_token: unexpected case [BC]";
1410        } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {
1411        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
1412    
1413        my @next_char;        my @next_char;
1414        push @next_char, $self->{next_input_character};        push @next_char, $self->{next_char};
1415                
1416        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1417          !!!next-input-character;          !!!next-input-character;
1418          push @next_char, $self->{next_input_character};          push @next_char, $self->{next_char};
1419          if ($self->{next_input_character} == 0x002D) { # -          if ($self->{next_char} == 0x002D) { # -
1420            $self->{current_token} = {type => 'comment', data => ''};            !!!cp (127);
1421            $self->{state} = 'comment';            $self->{current_token} = {type => COMMENT_TOKEN, data => ''};
1422              $self->{state} = COMMENT_START_STATE;
1423            !!!next-input-character;            !!!next-input-character;
1424            redo A;            redo A;
1425            } else {
1426              !!!cp (128);
1427          }          }
1428        } elsif ($self->{next_input_character} == 0x0044 or # D        } elsif ($self->{next_char} == 0x0044 or # D
1429                 $self->{next_input_character} == 0x0064) { # d                 $self->{next_char} == 0x0064) { # d
1430          !!!next-input-character;          !!!next-input-character;
1431          push @next_char, $self->{next_input_character};          push @next_char, $self->{next_char};
1432          if ($self->{next_input_character} == 0x004F or # O          if ($self->{next_char} == 0x004F or # O
1433              $self->{next_input_character} == 0x006F) { # o              $self->{next_char} == 0x006F) { # o
1434            !!!next-input-character;            !!!next-input-character;
1435            push @next_char, $self->{next_input_character};            push @next_char, $self->{next_char};
1436            if ($self->{next_input_character} == 0x0043 or # C            if ($self->{next_char} == 0x0043 or # C
1437                $self->{next_input_character} == 0x0063) { # c                $self->{next_char} == 0x0063) { # c
1438              !!!next-input-character;              !!!next-input-character;
1439              push @next_char, $self->{next_input_character};              push @next_char, $self->{next_char};
1440              if ($self->{next_input_character} == 0x0054 or # T              if ($self->{next_char} == 0x0054 or # T
1441                  $self->{next_input_character} == 0x0074) { # t                  $self->{next_char} == 0x0074) { # t
1442                !!!next-input-character;                !!!next-input-character;
1443                push @next_char, $self->{next_input_character};                push @next_char, $self->{next_char};
1444                if ($self->{next_input_character} == 0x0059 or # Y                if ($self->{next_char} == 0x0059 or # Y
1445                    $self->{next_input_character} == 0x0079) { # y                    $self->{next_char} == 0x0079) { # y
1446                  !!!next-input-character;                  !!!next-input-character;
1447                  push @next_char, $self->{next_input_character};                  push @next_char, $self->{next_char};
1448                  if ($self->{next_input_character} == 0x0050 or # P                  if ($self->{next_char} == 0x0050 or # P
1449                      $self->{next_input_character} == 0x0070) { # p                      $self->{next_char} == 0x0070) { # p
1450                    !!!next-input-character;                    !!!next-input-character;
1451                    push @next_char, $self->{next_input_character};                    push @next_char, $self->{next_char};
1452                    if ($self->{next_input_character} == 0x0045 or # E                    if ($self->{next_char} == 0x0045 or # E
1453                        $self->{next_input_character} == 0x0065) { # e                        $self->{next_char} == 0x0065) { # e
1454                      ## ISSUE: What a stupid code this is!                      !!!cp (129);
1455                      $self->{state} = 'DOCTYPE';                      ## TODO: What a stupid code this is!
1456                        $self->{state} = DOCTYPE_STATE;
1457                      !!!next-input-character;                      !!!next-input-character;
1458                      redo A;                      redo A;
1459                      } else {
1460                        !!!cp (130);
1461                    }                    }
1462                    } else {
1463                      !!!cp (131);
1464                  }                  }
1465                  } else {
1466                    !!!cp (132);
1467                }                }
1468                } else {
1469                  !!!cp (133);
1470              }              }
1471              } else {
1472                !!!cp (134);
1473            }            }
1474            } else {
1475              !!!cp (135);
1476          }          }
1477          } else {
1478            !!!cp (136);
1479        }        }
1480    
1481        !!!parse-error;        !!!parse-error (type => 'bogus comment');
1482        $self->{next_input_character} = shift @next_char;        $self->{next_char} = shift @next_char;
1483        !!!back-next-input-character (@next_char);        !!!back-next-input-character (@next_char);
1484        $self->{state} = 'bogus comment';        $self->{state} = BOGUS_COMMENT_STATE;
1485        redo A;        redo A;
1486                
1487        ## ISSUE: typos in spec: chacacters, is is a parse error        ## ISSUE: typos in spec: chacacters, is is a parse error
1488        ## 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?        ## 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?
1489      } elsif ($self->{state} eq 'comment') {      } elsif ($self->{state} == COMMENT_START_STATE) {
1490        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1491          $self->{state} = 'comment dash';          !!!cp (137);
1492            $self->{state} = COMMENT_START_DASH_STATE;
1493            !!!next-input-character;
1494            redo A;
1495          } elsif ($self->{next_char} == 0x003E) { # >
1496            !!!cp (138);
1497            !!!parse-error (type => 'bogus comment');
1498            $self->{state} = DATA_STATE;
1499            !!!next-input-character;
1500    
1501            !!!emit ($self->{current_token}); # comment
1502    
1503            redo A;
1504          } elsif ($self->{next_char} == -1) {
1505            !!!cp (139);
1506            !!!parse-error (type => 'unclosed comment');
1507            $self->{state} = DATA_STATE;
1508            ## reconsume
1509    
1510            !!!emit ($self->{current_token}); # comment
1511    
1512            redo A;
1513          } else {
1514            !!!cp (140);
1515            $self->{current_token}->{data} # comment
1516                .= chr ($self->{next_char});
1517            $self->{state} = COMMENT_STATE;
1518          !!!next-input-character;          !!!next-input-character;
1519          redo A;          redo A;
1520        } elsif ($self->{next_input_character} == -1) {        }
1521          !!!parse-error;      } elsif ($self->{state} == COMMENT_START_DASH_STATE) {
1522          $self->{state} = 'data';        if ($self->{next_char} == 0x002D) { # -
1523            !!!cp (141);
1524            $self->{state} = COMMENT_END_STATE;
1525            !!!next-input-character;
1526            redo A;
1527          } elsif ($self->{next_char} == 0x003E) { # >
1528            !!!cp (142);
1529            !!!parse-error (type => 'bogus comment');
1530            $self->{state} = DATA_STATE;
1531            !!!next-input-character;
1532    
1533            !!!emit ($self->{current_token}); # comment
1534    
1535            redo A;
1536          } elsif ($self->{next_char} == -1) {
1537            !!!cp (143);
1538            !!!parse-error (type => 'unclosed comment');
1539            $self->{state} = DATA_STATE;
1540            ## reconsume
1541    
1542            !!!emit ($self->{current_token}); # comment
1543    
1544            redo A;
1545          } else {
1546            !!!cp (144);
1547            $self->{current_token}->{data} # comment
1548                .= '-' . chr ($self->{next_char});
1549            $self->{state} = COMMENT_STATE;
1550            !!!next-input-character;
1551            redo A;
1552          }
1553        } elsif ($self->{state} == COMMENT_STATE) {
1554          if ($self->{next_char} == 0x002D) { # -
1555            !!!cp (145);
1556            $self->{state} = COMMENT_END_DASH_STATE;
1557            !!!next-input-character;
1558            redo A;
1559          } elsif ($self->{next_char} == -1) {
1560            !!!cp (146);
1561            !!!parse-error (type => 'unclosed comment');
1562            $self->{state} = DATA_STATE;
1563          ## reconsume          ## reconsume
1564    
1565          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
         undef $self->{current_token};  
1566    
1567          redo A;          redo A;
1568        } else {        } else {
1569          $self->{current_token}->{data} .= chr ($self->{next_input_character}); # comment          !!!cp (147);
1570            $self->{current_token}->{data} .= chr ($self->{next_char}); # comment
1571          ## Stay in the state          ## Stay in the state
1572          !!!next-input-character;          !!!next-input-character;
1573          redo A;          redo A;
1574        }        }
1575      } elsif ($self->{state} eq 'comment dash') {      } elsif ($self->{state} == COMMENT_END_DASH_STATE) {
1576        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1577          $self->{state} = 'comment end';          !!!cp (148);
1578            $self->{state} = COMMENT_END_STATE;
1579          !!!next-input-character;          !!!next-input-character;
1580          redo A;          redo A;
1581        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1582          !!!parse-error;          !!!cp (149);
1583          $self->{state} = 'data';          !!!parse-error (type => 'unclosed comment');
1584            $self->{state} = DATA_STATE;
1585          ## reconsume          ## reconsume
1586    
1587          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
         undef $self->{current_token};  
1588    
1589          redo A;          redo A;
1590        } else {        } else {
1591          $self->{current_token}->{data} .= '-' . chr ($self->{next_input_character}); # comment          !!!cp (150);
1592          $self->{state} = 'comment';          $self->{current_token}->{data} .= '-' . chr ($self->{next_char}); # comment
1593            $self->{state} = COMMENT_STATE;
1594          !!!next-input-character;          !!!next-input-character;
1595          redo A;          redo A;
1596        }        }
1597      } elsif ($self->{state} eq 'comment end') {      } elsif ($self->{state} == COMMENT_END_STATE) {
1598        if ($self->{next_input_character} == 0x003E) { # >        if ($self->{next_char} == 0x003E) { # >
1599          $self->{state} = 'data';          !!!cp (151);
1600            $self->{state} = DATA_STATE;
1601          !!!next-input-character;          !!!next-input-character;
1602    
1603          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
         undef $self->{current_token};  
1604    
1605          redo A;          redo A;
1606        } elsif ($self->{next_input_character} == 0x002D) { # -        } elsif ($self->{next_char} == 0x002D) { # -
1607          !!!parse-error;          !!!cp (152);
1608            !!!parse-error (type => 'dash in comment');
1609          $self->{current_token}->{data} .= '-'; # comment          $self->{current_token}->{data} .= '-'; # comment
1610          ## Stay in the state          ## Stay in the state
1611          !!!next-input-character;          !!!next-input-character;
1612          redo A;          redo A;
1613        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1614          !!!parse-error;          !!!cp (153);
1615          $self->{state} = 'data';          !!!parse-error (type => 'unclosed comment');
1616            $self->{state} = DATA_STATE;
1617          ## reconsume          ## reconsume
1618    
1619          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
         undef $self->{current_token};  
1620    
1621          redo A;          redo A;
1622        } else {        } else {
1623          !!!parse-error;          !!!cp (154);
1624          $self->{current_token}->{data} .= '--' . chr ($self->{next_input_character}); # comment          !!!parse-error (type => 'dash in comment');
1625          $self->{state} = 'comment';          $self->{current_token}->{data} .= '--' . chr ($self->{next_char}); # comment
1626            $self->{state} = COMMENT_STATE;
1627          !!!next-input-character;          !!!next-input-character;
1628          redo A;          redo A;
1629        }        }
1630      } elsif ($self->{state} eq 'DOCTYPE') {      } elsif ($self->{state} == DOCTYPE_STATE) {
1631        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1632            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1633            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1634            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1635            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1636          $self->{state} = 'before DOCTYPE name';          !!!cp (155);
1637            $self->{state} = BEFORE_DOCTYPE_NAME_STATE;
1638            !!!next-input-character;
1639            redo A;
1640          } else {
1641            !!!cp (156);
1642            !!!parse-error (type => 'no space before DOCTYPE name');
1643            $self->{state} = BEFORE_DOCTYPE_NAME_STATE;
1644            ## reconsume
1645            redo A;
1646          }
1647        } elsif ($self->{state} == BEFORE_DOCTYPE_NAME_STATE) {
1648          if ($self->{next_char} == 0x0009 or # HT
1649              $self->{next_char} == 0x000A or # LF
1650              $self->{next_char} == 0x000B or # VT
1651              $self->{next_char} == 0x000C or # FF
1652              $self->{next_char} == 0x0020) { # SP
1653            !!!cp (157);
1654            ## Stay in the state
1655            !!!next-input-character;
1656            redo A;
1657          } elsif ($self->{next_char} == 0x003E) { # >
1658            !!!cp (158);
1659            !!!parse-error (type => 'no DOCTYPE name');
1660            $self->{state} = DATA_STATE;
1661          !!!next-input-character;          !!!next-input-character;
1662    
1663            !!!emit ({type => DOCTYPE_TOKEN, quirks => 1});
1664    
1665            redo A;
1666          } elsif ($self->{next_char} == -1) {
1667            !!!cp (159);
1668            !!!parse-error (type => 'no DOCTYPE name');
1669            $self->{state} = DATA_STATE;
1670            ## reconsume
1671    
1672            !!!emit ({type => DOCTYPE_TOKEN, quirks => 1});
1673    
1674          redo A;          redo A;
1675        } else {        } else {
1676          !!!parse-error;          !!!cp (160);
1677          $self->{state} = 'before DOCTYPE name';          $self->{current_token}
1678                = {type => DOCTYPE_TOKEN,
1679                   name => chr ($self->{next_char}),
1680                   #quirks => 0,
1681                  };
1682    ## ISSUE: "Set the token's name name to the" in the spec
1683            $self->{state} = DOCTYPE_NAME_STATE;
1684            !!!next-input-character;
1685            redo A;
1686          }
1687        } elsif ($self->{state} == DOCTYPE_NAME_STATE) {
1688    ## ISSUE: Redundant "First," in the spec.
1689          if ($self->{next_char} == 0x0009 or # HT
1690              $self->{next_char} == 0x000A or # LF
1691              $self->{next_char} == 0x000B or # VT
1692              $self->{next_char} == 0x000C or # FF
1693              $self->{next_char} == 0x0020) { # SP
1694            !!!cp (161);
1695            $self->{state} = AFTER_DOCTYPE_NAME_STATE;
1696            !!!next-input-character;
1697            redo A;
1698          } elsif ($self->{next_char} == 0x003E) { # >
1699            !!!cp (162);
1700            $self->{state} = DATA_STATE;
1701            !!!next-input-character;
1702    
1703            !!!emit ($self->{current_token}); # DOCTYPE
1704    
1705            redo A;
1706          } elsif ($self->{next_char} == -1) {
1707            !!!cp (163);
1708            !!!parse-error (type => 'unclosed DOCTYPE');
1709            $self->{state} = DATA_STATE;
1710          ## reconsume          ## reconsume
1711    
1712            $self->{current_token}->{quirks} = 1;
1713            !!!emit ($self->{current_token}); # DOCTYPE
1714    
1715            redo A;
1716          } else {
1717            !!!cp (164);
1718            $self->{current_token}->{name}
1719              .= chr ($self->{next_char}); # DOCTYPE
1720            ## Stay in the state
1721            !!!next-input-character;
1722          redo A;          redo A;
1723        }        }
1724      } elsif ($self->{state} eq 'before DOCTYPE name') {      } elsif ($self->{state} == AFTER_DOCTYPE_NAME_STATE) {
1725        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1726            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1727            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1728            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1729            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1730            !!!cp (165);
1731          ## Stay in the state          ## Stay in the state
1732          !!!next-input-character;          !!!next-input-character;
1733          redo A;          redo A;
1734        } elsif (0x0061 <= $self->{next_input_character} and        } elsif ($self->{next_char} == 0x003E) { # >
1735                 $self->{next_input_character} <= 0x007A) { # a..z          !!!cp (166);
1736          $self->{current_token} = {type => 'DOCTYPE',          $self->{state} = DATA_STATE;
                           name => chr ($self->{next_input_character} - 0x0020),  
                           error => 1};  
         $self->{state} = 'DOCTYPE name';  
1737          !!!next-input-character;          !!!next-input-character;
1738    
1739            !!!emit ($self->{current_token}); # DOCTYPE
1740    
1741            redo A;
1742          } elsif ($self->{next_char} == -1) {
1743            !!!cp (167);
1744            !!!parse-error (type => 'unclosed DOCTYPE');
1745            $self->{state} = DATA_STATE;
1746            ## reconsume
1747    
1748            $self->{current_token}->{quirks} = 1;
1749            !!!emit ($self->{current_token}); # DOCTYPE
1750    
1751          redo A;          redo A;
1752        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x0050 or # P
1753          !!!parse-error;                 $self->{next_char} == 0x0070) { # p
         $self->{state} = 'data';  
1754          !!!next-input-character;          !!!next-input-character;
1755            if ($self->{next_char} == 0x0055 or # U
1756                $self->{next_char} == 0x0075) { # u
1757              !!!next-input-character;
1758              if ($self->{next_char} == 0x0042 or # B
1759                  $self->{next_char} == 0x0062) { # b
1760                !!!next-input-character;
1761                if ($self->{next_char} == 0x004C or # L
1762                    $self->{next_char} == 0x006C) { # l
1763                  !!!next-input-character;
1764                  if ($self->{next_char} == 0x0049 or # I
1765                      $self->{next_char} == 0x0069) { # i
1766                    !!!next-input-character;
1767                    if ($self->{next_char} == 0x0043 or # C
1768                        $self->{next_char} == 0x0063) { # c
1769                      !!!cp (168);
1770                      $self->{state} = BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
1771                      !!!next-input-character;
1772                      redo A;
1773                    } else {
1774                      !!!cp (169);
1775                    }
1776                  } else {
1777                    !!!cp (170);
1778                  }
1779                } else {
1780                  !!!cp (171);
1781                }
1782              } else {
1783                !!!cp (172);
1784              }
1785            } else {
1786              !!!cp (173);
1787            }
1788    
1789            #
1790          } elsif ($self->{next_char} == 0x0053 or # S
1791                   $self->{next_char} == 0x0073) { # s
1792            !!!next-input-character;
1793            if ($self->{next_char} == 0x0059 or # Y
1794                $self->{next_char} == 0x0079) { # y
1795              !!!next-input-character;
1796              if ($self->{next_char} == 0x0053 or # S
1797                  $self->{next_char} == 0x0073) { # s
1798                !!!next-input-character;
1799                if ($self->{next_char} == 0x0054 or # T
1800                    $self->{next_char} == 0x0074) { # t
1801                  !!!next-input-character;
1802                  if ($self->{next_char} == 0x0045 or # E
1803                      $self->{next_char} == 0x0065) { # e
1804                    !!!next-input-character;
1805                    if ($self->{next_char} == 0x004D or # M
1806                        $self->{next_char} == 0x006D) { # m
1807                      !!!cp (174);
1808                      $self->{state} = BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
1809                      !!!next-input-character;
1810                      redo A;
1811                    } else {
1812                      !!!cp (175);
1813                    }
1814                  } else {
1815                    !!!cp (176);
1816                  }
1817                } else {
1818                  !!!cp (177);
1819                }
1820              } else {
1821                !!!cp (178);
1822              }
1823            } else {
1824              !!!cp (179);
1825            }
1826    
1827          !!!emit ({type => 'DOCTYPE', name => '', error => 1});          #
1828          } else {
1829            !!!cp (180);
1830            !!!next-input-character;
1831            #
1832          }
1833    
1834          !!!parse-error (type => 'string after DOCTYPE name');
1835          $self->{current_token}->{quirks} = 1;
1836    
1837          $self->{state} = BOGUS_DOCTYPE_STATE;
1838          # next-input-character is already done
1839          redo A;
1840        } elsif ($self->{state} == BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE) {
1841          if ({
1842                0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
1843                #0x000D => 1, # HT, LF, VT, FF, SP, CR
1844              }->{$self->{next_char}}) {
1845            !!!cp (181);
1846            ## Stay in the state
1847            !!!next-input-character;
1848            redo A;
1849          } elsif ($self->{next_char} eq 0x0022) { # "
1850            !!!cp (182);
1851            $self->{current_token}->{public_identifier} = ''; # DOCTYPE
1852            $self->{state} = DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE;
1853            !!!next-input-character;
1854            redo A;
1855          } elsif ($self->{next_char} eq 0x0027) { # '
1856            !!!cp (183);
1857            $self->{current_token}->{public_identifier} = ''; # DOCTYPE
1858            $self->{state} = DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE;
1859            !!!next-input-character;
1860            redo A;
1861          } elsif ($self->{next_char} eq 0x003E) { # >
1862            !!!cp (184);
1863            !!!parse-error (type => 'no PUBLIC literal');
1864    
1865            $self->{state} = DATA_STATE;
1866            !!!next-input-character;
1867    
1868            $self->{current_token}->{quirks} = 1;
1869            !!!emit ($self->{current_token}); # DOCTYPE
1870    
1871          redo A;          redo A;
1872        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1873          !!!parse-error;          !!!cp (185);
1874          $self->{state} = 'data';          !!!parse-error (type => 'unclosed DOCTYPE');
1875    
1876            $self->{state} = DATA_STATE;
1877          ## reconsume          ## reconsume
1878    
1879          !!!emit ({type => 'DOCTYPE', name => '', error => 1});          $self->{current_token}->{quirks} = 1;
1880            !!!emit ($self->{current_token}); # DOCTYPE
1881    
1882          redo A;          redo A;
1883        } else {        } else {
1884          $self->{current_token} = {type => 'DOCTYPE',          !!!cp (186);
1885                            name => chr ($self->{next_input_character}),          !!!parse-error (type => 'string after PUBLIC');
1886                            error => 1};          $self->{current_token}->{quirks} = 1;
1887          $self->{state} = 'DOCTYPE name';  
1888            $self->{state} = BOGUS_DOCTYPE_STATE;
1889          !!!next-input-character;          !!!next-input-character;
1890          redo A;          redo A;
1891        }        }
1892      } elsif ($self->{state} eq 'DOCTYPE name') {      } elsif ($self->{state} == DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE) {
1893        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0022) { # "
1894            $self->{next_input_character} == 0x000A or # LF          !!!cp (187);
1895            $self->{next_input_character} == 0x000B or # VT          $self->{state} = AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
           $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';  
1896          !!!next-input-character;          !!!next-input-character;
1897          redo A;          redo A;
1898        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1899          $self->{current_token}->{error} = ($self->{current_token}->{name} ne 'HTML'); # DOCTYPE          !!!cp (188);
1900          $self->{state} = 'data';          !!!parse-error (type => 'unclosed PUBLIC literal');
1901    
1902            $self->{state} = DATA_STATE;
1903          !!!next-input-character;          !!!next-input-character;
1904    
1905            $self->{current_token}->{quirks} = 1;
1906          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
         undef $self->{current_token};  
1907    
1908          redo A;          redo A;
1909        } elsif (0x0061 <= $self->{next_input_character} and        } elsif ($self->{next_char} == -1) {
1910                 $self->{next_input_character} <= 0x007A) { # a..z          !!!cp (189);
1911          $self->{current_token}->{name} .= chr ($self->{next_input_character} - 0x0020); # DOCTYPE          !!!parse-error (type => 'unclosed PUBLIC literal');
1912          #$self->{current_token}->{error} = ($self->{current_token}->{name} ne 'HTML');  
1913            $self->{state} = DATA_STATE;
1914            ## reconsume
1915    
1916            $self->{current_token}->{quirks} = 1;
1917            !!!emit ($self->{current_token}); # DOCTYPE
1918    
1919            redo A;
1920          } else {
1921            !!!cp (190);
1922            $self->{current_token}->{public_identifier} # DOCTYPE
1923                .= chr $self->{next_char};
1924          ## Stay in the state          ## Stay in the state
1925          !!!next-input-character;          !!!next-input-character;
1926          redo A;          redo A;
1927        } elsif ($self->{next_input_character} == -1) {        }
1928          !!!parse-error;      } elsif ($self->{state} == DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE) {
1929          $self->{current_token}->{error} = ($self->{current_token}->{name} ne 'HTML'); # DOCTYPE        if ($self->{next_char} == 0x0027) { # '
1930          $self->{state} = 'data';          !!!cp (191);
1931            $self->{state} = AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
1932            !!!next-input-character;
1933            redo A;
1934          } elsif ($self->{next_char} == 0x003E) { # >
1935            !!!cp (192);
1936            !!!parse-error (type => 'unclosed PUBLIC literal');
1937    
1938            $self->{state} = DATA_STATE;
1939            !!!next-input-character;
1940    
1941            $self->{current_token}->{quirks} = 1;
1942            !!!emit ($self->{current_token}); # DOCTYPE
1943    
1944            redo A;
1945          } elsif ($self->{next_char} == -1) {
1946            !!!cp (193);
1947            !!!parse-error (type => 'unclosed PUBLIC literal');
1948    
1949            $self->{state} = DATA_STATE;
1950          ## reconsume          ## reconsume
1951    
1952          !!!emit ($self->{current_token});          $self->{current_token}->{quirks} = 1;
1953          undef $self->{current_token};          !!!emit ($self->{current_token}); # DOCTYPE
1954    
1955          redo A;          redo A;
1956        } else {        } else {
1957          $self->{current_token}->{name}          !!!cp (194);
1958            .= chr ($self->{next_input_character}); # DOCTYPE          $self->{current_token}->{public_identifier} # DOCTYPE
1959          #$self->{current_token}->{error} = ($self->{current_token}->{name} ne 'HTML');              .= chr $self->{next_char};
1960            ## Stay in the state
1961            !!!next-input-character;
1962            redo A;
1963          }
1964        } elsif ($self->{state} == AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE) {
1965          if ({
1966                0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
1967                #0x000D => 1, # HT, LF, VT, FF, SP, CR
1968              }->{$self->{next_char}}) {
1969            !!!cp (195);
1970            ## Stay in the state
1971            !!!next-input-character;
1972            redo A;
1973          } elsif ($self->{next_char} == 0x0022) { # "
1974            !!!cp (196);
1975            $self->{current_token}->{system_identifier} = ''; # DOCTYPE
1976            $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE;
1977            !!!next-input-character;
1978            redo A;
1979          } elsif ($self->{next_char} == 0x0027) { # '
1980            !!!cp (197);
1981            $self->{current_token}->{system_identifier} = ''; # DOCTYPE
1982            $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE;
1983            !!!next-input-character;
1984            redo A;
1985          } elsif ($self->{next_char} == 0x003E) { # >
1986            !!!cp (198);
1987            $self->{state} = DATA_STATE;
1988            !!!next-input-character;
1989    
1990            !!!emit ($self->{current_token}); # DOCTYPE
1991    
1992            redo A;
1993          } elsif ($self->{next_char} == -1) {
1994            !!!cp (199);
1995            !!!parse-error (type => 'unclosed DOCTYPE');
1996    
1997            $self->{state} = DATA_STATE;
1998            ## reconsume
1999    
2000            $self->{current_token}->{quirks} = 1;
2001            !!!emit ($self->{current_token}); # DOCTYPE
2002    
2003            redo A;
2004          } else {
2005            !!!cp (200);
2006            !!!parse-error (type => 'string after PUBLIC literal');
2007            $self->{current_token}->{quirks} = 1;
2008    
2009            $self->{state} = BOGUS_DOCTYPE_STATE;
2010            !!!next-input-character;
2011            redo A;
2012          }
2013        } elsif ($self->{state} == BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE) {
2014          if ({
2015                0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
2016                #0x000D => 1, # HT, LF, VT, FF, SP, CR
2017              }->{$self->{next_char}}) {
2018            !!!cp (201);
2019            ## Stay in the state
2020            !!!next-input-character;
2021            redo A;
2022          } elsif ($self->{next_char} == 0x0022) { # "
2023            !!!cp (202);
2024            $self->{current_token}->{system_identifier} = ''; # DOCTYPE
2025            $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE;
2026            !!!next-input-character;
2027            redo A;
2028          } elsif ($self->{next_char} == 0x0027) { # '
2029            !!!cp (203);
2030            $self->{current_token}->{system_identifier} = ''; # DOCTYPE
2031            $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE;
2032            !!!next-input-character;
2033            redo A;
2034          } elsif ($self->{next_char} == 0x003E) { # >
2035            !!!cp (204);
2036            !!!parse-error (type => 'no SYSTEM literal');
2037            $self->{state} = DATA_STATE;
2038            !!!next-input-character;
2039    
2040            $self->{current_token}->{quirks} = 1;
2041            !!!emit ($self->{current_token}); # DOCTYPE
2042    
2043            redo A;
2044          } elsif ($self->{next_char} == -1) {
2045            !!!cp (205);
2046            !!!parse-error (type => 'unclosed DOCTYPE');
2047    
2048            $self->{state} = DATA_STATE;
2049            ## reconsume
2050    
2051            $self->{current_token}->{quirks} = 1;
2052            !!!emit ($self->{current_token}); # DOCTYPE
2053    
2054            redo A;
2055          } else {
2056            !!!cp (206);
2057            !!!parse-error (type => 'string after SYSTEM');
2058            $self->{current_token}->{quirks} = 1;
2059    
2060            $self->{state} = BOGUS_DOCTYPE_STATE;
2061            !!!next-input-character;
2062            redo A;
2063          }
2064        } elsif ($self->{state} == DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE) {
2065          if ($self->{next_char} == 0x0022) { # "
2066            !!!cp (207);
2067            $self->{state} = AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
2068            !!!next-input-character;
2069            redo A;
2070          } elsif ($self->{next_char} == 0x003E) { # >
2071            !!!cp (208);
2072            !!!parse-error (type => 'unclosed PUBLIC literal');
2073    
2074            $self->{state} = DATA_STATE;
2075            !!!next-input-character;
2076    
2077            $self->{current_token}->{quirks} = 1;
2078            !!!emit ($self->{current_token}); # DOCTYPE
2079    
2080            redo A;
2081          } elsif ($self->{next_char} == -1) {
2082            !!!cp (209);
2083            !!!parse-error (type => 'unclosed SYSTEM literal');
2084    
2085            $self->{state} = DATA_STATE;
2086            ## reconsume
2087    
2088            $self->{current_token}->{quirks} = 1;
2089            !!!emit ($self->{current_token}); # DOCTYPE
2090    
2091            redo A;
2092          } else {
2093            !!!cp (210);
2094            $self->{current_token}->{system_identifier} # DOCTYPE
2095                .= chr $self->{next_char};
2096            ## Stay in the state
2097            !!!next-input-character;
2098            redo A;
2099          }
2100        } elsif ($self->{state} == DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE) {
2101          if ($self->{next_char} == 0x0027) { # '
2102            !!!cp (211);
2103            $self->{state} = AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
2104            !!!next-input-character;
2105            redo A;
2106          } elsif ($self->{next_char} == 0x003E) { # >
2107            !!!cp (212);
2108            !!!parse-error (type => 'unclosed PUBLIC literal');
2109    
2110            $self->{state} = DATA_STATE;
2111            !!!next-input-character;
2112    
2113            $self->{current_token}->{quirks} = 1;
2114            !!!emit ($self->{current_token}); # DOCTYPE
2115    
2116            redo A;
2117          } elsif ($self->{next_char} == -1) {
2118            !!!cp (213);
2119            !!!parse-error (type => 'unclosed SYSTEM literal');
2120    
2121            $self->{state} = DATA_STATE;
2122            ## reconsume
2123    
2124            $self->{current_token}->{quirks} = 1;
2125            !!!emit ($self->{current_token}); # DOCTYPE
2126    
2127            redo A;
2128          } else {
2129            !!!cp (214);
2130            $self->{current_token}->{system_identifier} # DOCTYPE
2131                .= chr $self->{next_char};
2132          ## Stay in the state          ## Stay in the state
2133          !!!next-input-character;          !!!next-input-character;
2134          redo A;          redo A;
2135        }        }
2136      } elsif ($self->{state} eq 'after DOCTYPE name') {      } elsif ($self->{state} == AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE) {
2137        if ($self->{next_input_character} == 0x0009 or # HT        if ({
2138            $self->{next_input_character} == 0x000A or # LF              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
2139            $self->{next_input_character} == 0x000B or # VT              #0x000D => 1, # HT, LF, VT, FF, SP, CR
2140            $self->{next_input_character} == 0x000C or # FF            }->{$self->{next_char}}) {
2141            $self->{next_input_character} == 0x0020) { # SP          !!!cp (215);
2142          ## Stay in the state          ## Stay in the state
2143          !!!next-input-character;          !!!next-input-character;
2144          redo A;          redo A;
2145        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2146          $self->{state} = 'data';          !!!cp (216);
2147            $self->{state} = DATA_STATE;
2148          !!!next-input-character;          !!!next-input-character;
2149    
2150          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
         undef $self->{current_token};  
2151    
2152          redo A;          redo A;
2153        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2154          !!!parse-error;          !!!cp (217);
2155          $self->{state} = 'data';          !!!parse-error (type => 'unclosed DOCTYPE');
2156    
2157            $self->{state} = DATA_STATE;
2158          ## reconsume          ## reconsume
2159    
2160            $self->{current_token}->{quirks} = 1;
2161          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
         undef $self->{current_token};  
2162    
2163          redo A;          redo A;
2164        } else {        } else {
2165          !!!parse-error;          !!!cp (218);
2166          $self->{current_token}->{error} = 1; # DOCTYPE          !!!parse-error (type => 'string after SYSTEM literal');
2167          $self->{state} = 'bogus DOCTYPE';          #$self->{current_token}->{quirks} = 1;
2168    
2169            $self->{state} = BOGUS_DOCTYPE_STATE;
2170          !!!next-input-character;          !!!next-input-character;
2171          redo A;          redo A;
2172        }        }
2173      } elsif ($self->{state} eq 'bogus DOCTYPE') {      } elsif ($self->{state} == BOGUS_DOCTYPE_STATE) {
2174        if ($self->{next_input_character} == 0x003E) { # >        if ($self->{next_char} == 0x003E) { # >
2175          $self->{state} = 'data';          !!!cp (219);
2176            $self->{state} = DATA_STATE;
2177          !!!next-input-character;          !!!next-input-character;
2178    
2179          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
         undef $self->{current_token};  
2180    
2181          redo A;          redo A;
2182        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2183          !!!parse-error;          !!!cp (220);
2184          $self->{state} = 'data';          !!!parse-error (type => 'unclosed DOCTYPE');
2185            $self->{state} = DATA_STATE;
2186          ## reconsume          ## reconsume
2187    
2188          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
         undef $self->{current_token};  
2189    
2190          redo A;          redo A;
2191        } else {        } else {
2192            !!!cp (221);
2193          ## Stay in the state          ## Stay in the state
2194          !!!next-input-character;          !!!next-input-character;
2195          redo A;          redo A;
# Line 1439  sub _get_next_token ($) { Line 2202  sub _get_next_token ($) {
2202    die "$0: _get_next_token: unexpected case";    die "$0: _get_next_token: unexpected case";
2203  } # _get_next_token  } # _get_next_token
2204    
2205  sub _tokenize_attempt_to_consume_an_entity ($) {  sub _tokenize_attempt_to_consume_an_entity ($$$) {
2206    my $self = shift;    my ($self, $in_attr, $additional) = @_;
2207      
2208    if ($self->{next_input_character} == 0x0023) { # #    if ({
2209           0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,
2210           0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR
2211           $additional => 1,
2212          }->{$self->{next_char}}) {
2213        !!!cp (1001);
2214        ## Don't consume
2215        ## No error
2216        return undef;
2217      } elsif ($self->{next_char} == 0x0023) { # #
2218      !!!next-input-character;      !!!next-input-character;
2219      my $num;      if ($self->{next_char} == 0x0078 or # x
2220      if ($self->{next_input_character} == 0x0078 or # x          $self->{next_char} == 0x0058) { # X
2221          $self->{next_input_character} == 0x0058) { # X        my $code;
2222        X: {        X: {
2223          my $x_char = $self->{next_input_character};          my $x_char = $self->{next_char};
2224          !!!next-input-character;          !!!next-input-character;
2225          if (0x0030 <= $self->{next_input_character} and          if (0x0030 <= $self->{next_char} and
2226              $self->{next_input_character} <= 0x0039) { # 0..9              $self->{next_char} <= 0x0039) { # 0..9
2227            $num ||= 0;            !!!cp (1002);
2228            $num *= 0x10;            $code ||= 0;
2229            $num += $self->{next_input_character} - 0x0030;            $code *= 0x10;
2230              $code += $self->{next_char} - 0x0030;
2231            redo X;            redo X;
2232          } elsif (0x0061 <= $self->{next_input_character} and          } elsif (0x0061 <= $self->{next_char} and
2233                   $self->{next_input_character} <= 0x0066) { # a..f                   $self->{next_char} <= 0x0066) { # a..f
2234            ## ISSUE: the spec says U+0078, which is apparently incorrect            !!!cp (1003);
2235            $num ||= 0;            $code ||= 0;
2236            $num *= 0x10;            $code *= 0x10;
2237            $num += $self->{next_input_character} - 0x0060 + 9;            $code += $self->{next_char} - 0x0060 + 9;
2238            redo X;            redo X;
2239          } elsif (0x0041 <= $self->{next_input_character} and          } elsif (0x0041 <= $self->{next_char} and
2240                   $self->{next_input_character} <= 0x0046) { # A..F                   $self->{next_char} <= 0x0046) { # A..F
2241            ## ISSUE: the spec says U+0058, which is apparently incorrect            !!!cp (1004);
2242            $num ||= 0;            $code ||= 0;
2243            $num *= 0x10;            $code *= 0x10;
2244            $num += $self->{next_input_character} - 0x0040 + 9;            $code += $self->{next_char} - 0x0040 + 9;
2245            redo X;            redo X;
2246          } elsif (not defined $num) { # no hexadecimal digit          } elsif (not defined $code) { # no hexadecimal digit
2247            !!!parse-error;            !!!cp (1005);
2248            $self->{next_input_character} = 0x0023; # #            !!!parse-error (type => 'bare hcro');
2249            !!!back-next-input-character ($x_char);            !!!back-next-input-character ($x_char, $self->{next_char});
2250              $self->{next_char} = 0x0023; # #
2251            return undef;            return undef;
2252          } elsif ($self->{next_input_character} == 0x003B) { # ;          } elsif ($self->{next_char} == 0x003B) { # ;
2253              !!!cp (1006);
2254            !!!next-input-character;            !!!next-input-character;
2255          } else {          } else {
2256            !!!parse-error;            !!!cp (1007);
2257              !!!parse-error (type => 'no refc');
2258          }          }
2259    
2260          ## TODO: check the definition for |a valid Unicode character|.          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2261          if ($num > 1114111 or $num == 0) {            !!!cp (1008);
2262            $num = 0xFFFD; # REPLACEMENT CHARACTER            !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);
2263            ## ISSUE: Why this is not an error?            $code = 0xFFFD;
2264            } elsif ($code > 0x10FFFF) {
2265              !!!cp (1009);
2266              !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);
2267              $code = 0xFFFD;
2268            } elsif ($code == 0x000D) {
2269              !!!cp (1010);
2270              !!!parse-error (type => 'CR character reference');
2271              $code = 0x000A;
2272            } elsif (0x80 <= $code and $code <= 0x9F) {
2273              !!!cp (1011);
2274              !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);
2275              $code = $c1_entity_char->{$code};
2276          }          }
2277    
2278          return {type => 'character', data => chr $num};          return {type => CHARACTER_TOKEN, data => chr $code,
2279                    has_reference => 1};
2280        } # X        } # X
2281      } elsif (0x0030 <= $self->{next_input_character} and      } elsif (0x0030 <= $self->{next_char} and
2282               $self->{next_input_character} <= 0x0039) { # 0..9               $self->{next_char} <= 0x0039) { # 0..9
2283        my $code = $self->{next_input_character} - 0x0030;        my $code = $self->{next_char} - 0x0030;
2284        !!!next-input-character;        !!!next-input-character;
2285                
2286        while (0x0030 <= $self->{next_input_character} and        while (0x0030 <= $self->{next_char} and
2287                  $self->{next_input_character} <= 0x0039) { # 0..9                  $self->{next_char} <= 0x0039) { # 0..9
2288            !!!cp (1012);
2289          $code *= 10;          $code *= 10;
2290          $code += $self->{next_input_character} - 0x0030;          $code += $self->{next_char} - 0x0030;
2291                    
2292          !!!next-input-character;          !!!next-input-character;
2293        }        }
2294    
2295        if ($self->{next_input_character} == 0x003B) { # ;        if ($self->{next_char} == 0x003B) { # ;
2296            !!!cp (1013);
2297          !!!next-input-character;          !!!next-input-character;
2298        } else {        } else {
2299          !!!parse-error;          !!!cp (1014);
2300            !!!parse-error (type => 'no refc');
2301        }        }
2302    
2303        ## TODO: check the definition for |a valid Unicode character|.        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2304        if ($code > 1114111 or $code == 0) {          !!!cp (1015);
2305          $code = 0xFFFD; # REPLACEMENT CHARACTER          !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);
2306          ## ISSUE: Why this is not an error?          $code = 0xFFFD;
2307          } elsif ($code > 0x10FFFF) {
2308            !!!cp (1016);
2309            !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);
2310            $code = 0xFFFD;
2311          } elsif ($code == 0x000D) {
2312            !!!cp (1017);
2313            !!!parse-error (type => 'CR character reference');
2314            $code = 0x000A;
2315          } elsif (0x80 <= $code and $code <= 0x9F) {
2316            !!!cp (1018);
2317            !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);
2318            $code = $c1_entity_char->{$code};
2319        }        }
2320                
2321        return {type => 'character', data => chr $code};        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1};
2322      } else {      } else {
2323        !!!parse-error;        !!!cp (1019);
2324        !!!back-next-input-character ($self->{next_input_character});        !!!parse-error (type => 'bare nero');
2325        $self->{next_input_character} = 0x0023; # #        !!!back-next-input-character ($self->{next_char});
2326          $self->{next_char} = 0x0023; # #
2327        return undef;        return undef;
2328      }      }
2329    } elsif ((0x0041 <= $self->{next_input_character} and    } elsif ((0x0041 <= $self->{next_char} and
2330              $self->{next_input_character} <= 0x005A) or              $self->{next_char} <= 0x005A) or
2331             (0x0061 <= $self->{next_input_character} and             (0x0061 <= $self->{next_char} and
2332              $self->{next_input_character} <= 0x007A)) {              $self->{next_char} <= 0x007A)) {
2333      my $entity_name = chr $self->{next_input_character};      my $entity_name = chr $self->{next_char};
2334      !!!next-input-character;      !!!next-input-character;
2335    
2336      my $value = $entity_name;      my $value = $entity_name;
2337      my $match;      my $match = 0;
2338        require Whatpm::_NamedEntityList;
2339        our $EntityChar;
2340    
2341      while (length $entity_name < 10 and      while (length $entity_name < 10 and
2342             ## NOTE: Some number greater than the maximum length of entity name             ## NOTE: Some number greater than the maximum length of entity name
2343             ((0x0041 <= $self->{next_input_character} and             ((0x0041 <= $self->{next_char} and # a
2344               $self->{next_input_character} <= 0x005A) or               $self->{next_char} <= 0x005A) or # x
2345              (0x0061 <= $self->{next_input_character} and              (0x0061 <= $self->{next_char} and # a
2346               $self->{next_input_character} <= 0x007A) or               $self->{next_char} <= 0x007A) or # z
2347              (0x0030 <= $self->{next_input_character} and              (0x0030 <= $self->{next_char} and # 0
2348               $self->{next_input_character} <= 0x0039))) {               $self->{next_char} <= 0x0039) or # 9
2349        $entity_name .= chr $self->{next_input_character};              $self->{next_char} == 0x003B)) { # ;
2350        if (defined $entity_char->{$entity_name}) {        $entity_name .= chr $self->{next_char};
2351          $value = $entity_char->{$entity_name};        if (defined $EntityChar->{$entity_name}) {
2352          $match = 1;          if ($self->{next_char} == 0x003B) { # ;
2353              !!!cp (1020);
2354              $value = $EntityChar->{$entity_name};
2355              $match = 1;
2356              !!!next-input-character;
2357              last;
2358            } else {
2359              !!!cp (1021);
2360              $value = $EntityChar->{$entity_name};
2361              $match = -1;
2362              !!!next-input-character;
2363            }
2364        } else {        } else {
2365          $value .= chr $self->{next_input_character};          !!!cp (1022);
2366            $value .= chr $self->{next_char};
2367            $match *= 2;
2368            !!!next-input-character;
2369        }        }
       !!!next-input-character;  
2370      }      }
2371            
2372      if ($match) {      if ($match > 0) {
2373        if ($self->{next_input_character} == 0x003B) { # ;        !!!cp (1023);
2374          !!!next-input-character;        return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};
2375        } elsif ($match < 0) {
2376          !!!parse-error (type => 'no refc');
2377          if ($in_attr and $match < -1) {
2378            !!!cp (1024);
2379            return {type => CHARACTER_TOKEN, data => '&'.$entity_name};
2380        } else {        } else {
2381          !!!parse-error;          !!!cp (1025);
2382            return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};
2383        }        }
   
       return {type => 'character', data => $value};  
2384      } else {      } else {
2385        !!!parse-error;        !!!cp (1026);
2386        ## NOTE: No characters are consumed in the spec.        !!!parse-error (type => 'bare ero');
2387        !!!back-token ({type => 'character', data => $value});        ## NOTE: "No characters are consumed" in the spec.
2388        return undef;        return {type => CHARACTER_TOKEN, data => '&'.$value};
2389      }      }
2390    } else {    } else {
2391        !!!cp (1027);
2392      ## no characters are consumed      ## no characters are consumed
2393      !!!parse-error;      !!!parse-error (type => 'bare ero');
2394      return undef;      return undef;
2395    }    }
2396  } # _tokenize_attempt_to_consume_an_entity  } # _tokenize_attempt_to_consume_an_entity
# Line 1576  sub _initialize_tree_constructor ($) { Line 2401  sub _initialize_tree_constructor ($) {
2401    $self->{document}->strict_error_checking (0);    $self->{document}->strict_error_checking (0);
2402    ## TODO: Turn mutation events off # MUST    ## TODO: Turn mutation events off # MUST
2403    ## TODO: Turn loose Document option (manakai extension) on    ## TODO: Turn loose Document option (manakai extension) on
2404    ## TODO: Mark the Document as an HTML document # MUST    $self->{document}->manakai_is_html (1); # MUST
2405  } # _initialize_tree_constructor  } # _initialize_tree_constructor
2406    
2407  sub _terminate_tree_constructor ($) {  sub _terminate_tree_constructor ($) {
# Line 1587  sub _terminate_tree_constructor ($) { Line 2412  sub _terminate_tree_constructor ($) {
2412    
2413  ## ISSUE: Should append_child (for example) in script executed in tree construction stage fire mutation events?  ## ISSUE: Should append_child (for example) in script executed in tree construction stage fire mutation events?
2414    
2415    { # tree construction stage
2416      my $token;
2417    
2418  sub _construct_tree ($) {  sub _construct_tree ($) {
2419    my ($self) = @_;    my ($self) = @_;
2420    
# Line 1598  sub _construct_tree ($) { Line 2426  sub _construct_tree ($) {
2426    ## characters and insert one Text node whose data is concatenation    ## characters and insert one Text node whose data is concatenation
2427    ## of all those characters. # MUST    ## of all those characters. # MUST
2428        
   my $token;  
2429    !!!next-token;    !!!next-token;
2430    
2431    my $phase = 'initial'; # MUST    undef $self->{form_element};
2432      undef $self->{head_element};
2433      $self->{open_elements} = [];
2434      undef $self->{inner_html_node};
2435    
2436      ## NOTE: The "initial" insertion mode.
2437      $self->_tree_construction_initial; # MUST
2438    
2439      ## NOTE: The "before html" insertion mode.
2440      $self->_tree_construction_root_element;
2441      $self->{insertion_mode} = BEFORE_HEAD_IM;
2442    
2443      ## NOTE: The "before head" insertion mode and so on.
2444      $self->_tree_construction_main;
2445    } # _construct_tree
2446    
2447    sub _tree_construction_initial ($) {
2448      my $self = shift;
2449    
2450      ## NOTE: "initial" insertion mode
2451    
2452      INITIAL: {
2453        if ($token->{type} == DOCTYPE_TOKEN) {
2454          ## NOTE: Conformance checkers MAY, instead of reporting "not HTML5"
2455          ## error, switch to a conformance checking mode for another
2456          ## language.
2457          my $doctype_name = $token->{name};
2458          $doctype_name = '' unless defined $doctype_name;
2459          $doctype_name =~ tr/a-z/A-Z/;
2460          if (not defined $token->{name} or # <!DOCTYPE>
2461              defined $token->{public_identifier} or
2462              defined $token->{system_identifier}) {
2463            !!!cp ('t1');
2464            !!!parse-error (type => 'not HTML5');
2465          } elsif ($doctype_name ne 'HTML') {
2466            !!!cp ('t2');
2467            ## ISSUE: ASCII case-insensitive? (in fact it does not matter)
2468            !!!parse-error (type => 'not HTML5');
2469          } else {
2470            !!!cp ('t3');
2471          }
2472          
2473          my $doctype = $self->{document}->create_document_type_definition
2474            ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?
2475          $doctype->public_id ($token->{public_identifier})
2476              if defined $token->{public_identifier};
2477          $doctype->system_id ($token->{system_identifier})
2478              if defined $token->{system_identifier};
2479          ## NOTE: Other DocumentType attributes are null or empty lists.
2480          ## ISSUE: internalSubset = null??
2481          $self->{document}->append_child ($doctype);
2482          
2483          if ($token->{quirks} or $doctype_name ne 'HTML') {
2484            !!!cp ('t4');
2485            $self->{document}->manakai_compat_mode ('quirks');
2486          } elsif (defined $token->{public_identifier}) {
2487            my $pubid = $token->{public_identifier};
2488            $pubid =~ tr/a-z/A-z/;
2489            if ({
2490              "+//SILMARIL//DTD HTML PRO V0R11 19970101//EN" => 1,
2491              "-//ADVASOFT LTD//DTD HTML 3.0 ASWEDIT + EXTENSIONS//EN" => 1,
2492              "-//AS//DTD HTML 3.0 ASWEDIT + EXTENSIONS//EN" => 1,
2493              "-//IETF//DTD HTML 2.0 LEVEL 1//EN" => 1,
2494              "-//IETF//DTD HTML 2.0 LEVEL 2//EN" => 1,
2495              "-//IETF//DTD HTML 2.0 STRICT LEVEL 1//EN" => 1,
2496              "-//IETF//DTD HTML 2.0 STRICT LEVEL 2//EN" => 1,
2497              "-//IETF//DTD HTML 2.0 STRICT//EN" => 1,
2498              "-//IETF//DTD HTML 2.0//EN" => 1,
2499              "-//IETF//DTD HTML 2.1E//EN" => 1,
2500              "-//IETF//DTD HTML 3.0//EN" => 1,
2501              "-//IETF//DTD HTML 3.0//EN//" => 1,
2502              "-//IETF//DTD HTML 3.2 FINAL//EN" => 1,
2503              "-//IETF//DTD HTML 3.2//EN" => 1,
2504              "-//IETF//DTD HTML 3//EN" => 1,
2505              "-//IETF//DTD HTML LEVEL 0//EN" => 1,
2506              "-//IETF//DTD HTML LEVEL 0//EN//2.0" => 1,
2507              "-//IETF//DTD HTML LEVEL 1//EN" => 1,
2508              "-//IETF//DTD HTML LEVEL 1//EN//2.0" => 1,
2509              "-//IETF//DTD HTML LEVEL 2//EN" => 1,
2510              "-//IETF//DTD HTML LEVEL 2//EN//2.0" => 1,
2511              "-//IETF//DTD HTML LEVEL 3//EN" => 1,
2512              "-//IETF//DTD HTML LEVEL 3//EN//3.0" => 1,
2513              "-//IETF//DTD HTML STRICT LEVEL 0//EN" => 1,
2514              "-//IETF//DTD HTML STRICT LEVEL 0//EN//2.0" => 1,
2515              "-//IETF//DTD HTML STRICT LEVEL 1//EN" => 1,
2516              "-//IETF//DTD HTML STRICT LEVEL 1//EN//2.0" => 1,
2517              "-//IETF//DTD HTML STRICT LEVEL 2//EN" => 1,
2518              "-//IETF//DTD HTML STRICT LEVEL 2//EN//2.0" => 1,
2519              "-//IETF//DTD HTML STRICT LEVEL 3//EN" => 1,
2520              "-//IETF//DTD HTML STRICT LEVEL 3//EN//3.0" => 1,
2521              "-//IETF//DTD HTML STRICT//EN" => 1,
2522              "-//IETF//DTD HTML STRICT//EN//2.0" => 1,
2523              "-//IETF//DTD HTML STRICT//EN//3.0" => 1,
2524              "-//IETF//DTD HTML//EN" => 1,
2525              "-//IETF//DTD HTML//EN//2.0" => 1,
2526              "-//IETF//DTD HTML//EN//3.0" => 1,
2527              "-//METRIUS//DTD METRIUS PRESENTATIONAL//EN" => 1,
2528              "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML STRICT//EN" => 1,
2529              "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML//EN" => 1,
2530              "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 TABLES//EN" => 1,
2531              "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML STRICT//EN" => 1,
2532              "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML//EN" => 1,
2533              "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 TABLES//EN" => 1,
2534              "-//NETSCAPE COMM. CORP.//DTD HTML//EN" => 1,
2535              "-//NETSCAPE COMM. CORP.//DTD STRICT HTML//EN" => 1,
2536              "-//O'REILLY AND ASSOCIATES//DTD HTML 2.0//EN" => 1,
2537              "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED 1.0//EN" => 1,
2538              "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED RELAXED 1.0//EN" => 1,
2539              "-//SOFTQUAD SOFTWARE//DTD HOTMETAL PRO 6.0::19990601::EXTENSIONS TO HTML 4.0//EN" => 1,
2540              "-//SOFTQUAD//DTD HOTMETAL PRO 4.0::19971010::EXTENSIONS TO HTML 4.0//EN" => 1,
2541              "-//SPYGLASS//DTD HTML 2.0 EXTENDED//EN" => 1,
2542              "-//SQ//DTD HTML 2.0 HOTMETAL + EXTENSIONS//EN" => 1,
2543              "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA HTML//EN" => 1,
2544              "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA STRICT HTML//EN" => 1,
2545              "-//W3C//DTD HTML 3 1995-03-24//EN" => 1,
2546              "-//W3C//DTD HTML 3.2 DRAFT//EN" => 1,
2547              "-//W3C//DTD HTML 3.2 FINAL//EN" => 1,
2548              "-//W3C//DTD HTML 3.2//EN" => 1,
2549              "-//W3C//DTD HTML 3.2S DRAFT//EN" => 1,
2550              "-//W3C//DTD HTML 4.0 FRAMESET//EN" => 1,
2551              "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN" => 1,
2552              "-//W3C//DTD HTML EXPERIMETNAL 19960712//EN" => 1,
2553              "-//W3C//DTD HTML EXPERIMENTAL 970421//EN" => 1,
2554              "-//W3C//DTD W3 HTML//EN" => 1,
2555              "-//W3O//DTD W3 HTML 3.0//EN" => 1,
2556              "-//W3O//DTD W3 HTML 3.0//EN//" => 1,
2557              "-//W3O//DTD W3 HTML STRICT 3.0//EN//" => 1,
2558              "-//WEBTECHS//DTD MOZILLA HTML 2.0//EN" => 1,
2559              "-//WEBTECHS//DTD MOZILLA HTML//EN" => 1,
2560              "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" => 1,
2561              "HTML" => 1,
2562            }->{$pubid}) {
2563              !!!cp ('t5');
2564              $self->{document}->manakai_compat_mode ('quirks');
2565            } elsif ($pubid eq "-//W3C//DTD HTML 4.01 FRAMESET//EN" or
2566                     $pubid eq "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN") {
2567              if (defined $token->{system_identifier}) {
2568                !!!cp ('t6');
2569                $self->{document}->manakai_compat_mode ('quirks');
2570              } else {
2571                !!!cp ('t7');
2572                $self->{document}->manakai_compat_mode ('limited quirks');
2573              }
2574            } elsif ($pubid eq "-//W3C//DTD XHTML 1.0 FRAMESET//EN" or
2575                     $pubid eq "-//W3C//DTD XHTML 1.0 TRANSITIONAL//EN") {
2576              !!!cp ('t8');
2577              $self->{document}->manakai_compat_mode ('limited quirks');
2578            } else {
2579              !!!cp ('t9');
2580            }
2581          } else {
2582            !!!cp ('t10');
2583          }
2584          if (defined $token->{system_identifier}) {
2585            my $sysid = $token->{system_identifier};
2586            $sysid =~ tr/A-Z/a-z/;
2587            if ($sysid eq "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd") {
2588              ## TODO: Check the spec: PUBLIC "(limited quirks)" "(quirks)"
2589              $self->{document}->manakai_compat_mode ('quirks');
2590              !!!cp ('t11');
2591            } else {
2592              !!!cp ('t12');
2593            }
2594          } else {
2595            !!!cp ('t13');
2596          }
2597          
2598          ## Go to the "before html" insertion mode.
2599          !!!next-token;
2600          return;
2601        } elsif ({
2602                  START_TAG_TOKEN, 1,
2603                  END_TAG_TOKEN, 1,
2604                  END_OF_FILE_TOKEN, 1,
2605                 }->{$token->{type}}) {
2606          !!!cp ('t14');
2607          !!!parse-error (type => 'no DOCTYPE');
2608          $self->{document}->manakai_compat_mode ('quirks');
2609          ## Go to the "before html" insertion mode.
2610          ## reprocess
2611          return;
2612        } elsif ($token->{type} == CHARACTER_TOKEN) {
2613          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D
2614            ## Ignore the token
2615    
2616            unless (length $token->{data}) {
2617              !!!cp ('t15');
2618              ## Stay in the insertion mode.
2619              !!!next-token;
2620              redo INITIAL;
2621            } else {
2622              !!!cp ('t16');
2623            }
2624          } else {
2625            !!!cp ('t17');
2626          }
2627    
2628          !!!parse-error (type => 'no DOCTYPE');
2629          $self->{document}->manakai_compat_mode ('quirks');
2630          ## Go to the "before html" insertion mode.
2631          ## reprocess
2632          return;
2633        } elsif ($token->{type} == COMMENT_TOKEN) {
2634          !!!cp ('t18');
2635          my $comment = $self->{document}->create_comment ($token->{data});
2636          $self->{document}->append_child ($comment);
2637          
2638          ## Stay in the insertion mode.
2639          !!!next-token;
2640          redo INITIAL;
2641        } else {
2642          die "$0: $token->{type}: Unknown token type";
2643        }
2644      } # INITIAL
2645    
2646      die "$0: _tree_construction_initial: This should be never reached";
2647    } # _tree_construction_initial
2648    
2649    sub _tree_construction_root_element ($) {
2650      my $self = shift;
2651    
2652      ## NOTE: "before html" insertion mode.
2653      
2654      B: {
2655          if ($token->{type} == DOCTYPE_TOKEN) {
2656            !!!cp ('t19');
2657            !!!parse-error (type => 'in html:#DOCTYPE');
2658            ## Ignore the token
2659            ## Stay in the insertion mode.
2660            !!!next-token;
2661            redo B;
2662          } elsif ($token->{type} == COMMENT_TOKEN) {
2663            !!!cp ('t20');
2664            my $comment = $self->{document}->create_comment ($token->{data});
2665            $self->{document}->append_child ($comment);
2666            ## Stay in the insertion mode.
2667            !!!next-token;
2668            redo B;
2669          } elsif ($token->{type} == CHARACTER_TOKEN) {
2670            if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D
2671              ## Ignore the token.
2672    
2673              unless (length $token->{data}) {
2674                !!!cp ('t21');
2675                ## Stay in the insertion mode.
2676                !!!next-token;
2677                redo B;
2678              } else {
2679                !!!cp ('t22');
2680              }
2681            } else {
2682              !!!cp ('t23');
2683            }
2684    
2685            $self->{application_cache_selection}->(undef);
2686    
2687            #
2688          } elsif ($token->{type} == START_TAG_TOKEN) {
2689            if ($token->{tag_name} eq 'html') {
2690              my $root_element;
2691              !!!create-element ($root_element, $token->{tag_name}, $token->{attributes});
2692              $self->{document}->append_child ($root_element);
2693              push @{$self->{open_elements}}, [$root_element, 'html'];
2694    
2695              if ($token->{attributes}->{manifest}) {
2696                !!!cp ('t24');
2697                $self->{application_cache_selection}
2698                    ->($token->{attributes}->{manifest}->{value});
2699                ## ISSUE: No relative reference resolution?
2700              } else {
2701                !!!cp ('t25');
2702                $self->{application_cache_selection}->(undef);
2703              }
2704    
2705              !!!next-token;
2706              return; ## Go to the "before head" insertion mode.
2707            } else {
2708              !!!cp ('t25.1');
2709              #
2710            }
2711          } elsif ({
2712                    END_TAG_TOKEN, 1,
2713                    END_OF_FILE_TOKEN, 1,
2714                   }->{$token->{type}}) {
2715            !!!cp ('t26');
2716            #
2717          } else {
2718            die "$0: $token->{type}: Unknown token type";
2719          }
2720    
2721        my $root_element; !!!create-element ($root_element, 'html');
2722        $self->{document}->append_child ($root_element);
2723        push @{$self->{open_elements}}, [$root_element, 'html'];
2724    
2725        $self->{application_cache_selection}->(undef);
2726    
2727        ## NOTE: Reprocess the token.
2728        return; ## Go to the "before head" insertion mode.
2729    
2730        ## ISSUE: There is an issue in the spec
2731      } # B
2732    
2733      die "$0: _tree_construction_root_element: This should never be reached";
2734    } # _tree_construction_root_element
2735    
2736    sub _reset_insertion_mode ($) {
2737      my $self = shift;
2738    
2739        ## Step 1
2740        my $last;
2741        
2742        ## Step 2
2743        my $i = -1;
2744        my $node = $self->{open_elements}->[$i];
2745        
2746        ## Step 3
2747        S3: {
2748          if ($self->{open_elements}->[0]->[0] eq $node->[0]) {
2749            $last = 1;
2750            if (defined $self->{inner_html_node}) {
2751              if ($self->{inner_html_node}->[1] eq 'td' or
2752                  $self->{inner_html_node}->[1] eq 'th') {
2753                !!!cp ('t27');
2754                #
2755              } else {
2756                !!!cp ('t28');
2757                $node = $self->{inner_html_node};
2758              }
2759            }
2760          }
2761        
2762          ## Step 4..13
2763          my $new_mode = {
2764                          select => IN_SELECT_IM,
2765                          ## NOTE: |option| and |optgroup| do not set
2766                          ## insertion mode to "in select" by themselves.
2767                          td => IN_CELL_IM,
2768                          th => IN_CELL_IM,
2769                          tr => IN_ROW_IM,
2770                          tbody => IN_TABLE_BODY_IM,
2771                          thead => IN_TABLE_BODY_IM,
2772                          tfoot => IN_TABLE_BODY_IM,
2773                          caption => IN_CAPTION_IM,
2774                          colgroup => IN_COLUMN_GROUP_IM,
2775                          table => IN_TABLE_IM,
2776                          head => IN_BODY_IM, # not in head!
2777                          body => IN_BODY_IM,
2778                          frameset => IN_FRAMESET_IM,
2779                         }->{$node->[1]};
2780          $self->{insertion_mode} = $new_mode and return if defined $new_mode;
2781          
2782          ## Step 14
2783          if ($node->[1] eq 'html') {
2784            unless (defined $self->{head_element}) {
2785              !!!cp ('t29');
2786              $self->{insertion_mode} = BEFORE_HEAD_IM;
2787            } else {
2788              ## ISSUE: Can this state be reached?
2789              !!!cp ('t30');
2790              $self->{insertion_mode} = AFTER_HEAD_IM;
2791            }
2792            return;
2793          } else {
2794            !!!cp ('t31');
2795          }
2796          
2797          ## Step 15
2798          $self->{insertion_mode} = IN_BODY_IM and return if $last;
2799          
2800          ## Step 16
2801          $i--;
2802          $node = $self->{open_elements}->[$i];
2803          
2804          ## Step 17
2805          redo S3;
2806        } # S3
2807    
2808      die "$0: _reset_insertion_mode: This line should never be reached";
2809    } # _reset_insertion_mode
2810    
2811    sub _tree_construction_main ($) {
2812      my $self = shift;
2813    
   my $open_elements = [];  
2814    my $active_formatting_elements = [];    my $active_formatting_elements = [];
   my $head_element;  
   my $form_element;  
   my $insertion_mode = 'before head';  
2815    
2816    my $reconstruct_active_formatting_elements = sub { # MUST    my $reconstruct_active_formatting_elements = sub { # MUST
2817      my $insert = shift;      my $insert = shift;
# Line 1621  sub _construct_tree ($) { Line 2825  sub _construct_tree ($) {
2825    
2826      ## Step 2      ## Step 2
2827      return if $entry->[0] eq '#marker';      return if $entry->[0] eq '#marker';
2828      for (@$open_elements) {      for (@{$self->{open_elements}}) {
2829        if ($entry->[0] eq $_->[0]) {        if ($entry->[0] eq $_->[0]) {
2830            !!!cp ('t32');
2831          return;          return;
2832        }        }
2833      }      }
# Line 1637  sub _construct_tree ($) { Line 2842  sub _construct_tree ($) {
2842    
2843        ## Step 6        ## Step 6
2844        if ($entry->[0] eq '#marker') {        if ($entry->[0] eq '#marker') {
2845            !!!cp ('t33_1');
2846          #          #
2847        } else {        } else {
2848          my $in_open_elements;          my $in_open_elements;
2849          OE: for (@$open_elements) {          OE: for (@{$self->{open_elements}}) {
2850            if ($entry->[0] eq $_->[0]) {            if ($entry->[0] eq $_->[0]) {
2851                !!!cp ('t33');
2852              $in_open_elements = 1;              $in_open_elements = 1;
2853              last OE;              last OE;
2854            }            }
2855          }          }
2856          if ($in_open_elements) {          if ($in_open_elements) {
2857              !!!cp ('t34');
2858            #            #
2859          } else {          } else {
2860              ## NOTE: <!DOCTYPE HTML><p><b><i><u></p> <p>X
2861              !!!cp ('t35');
2862            redo S4;            redo S4;
2863          }          }
2864        }        }
# Line 1664  sub _construct_tree ($) { Line 2874  sub _construct_tree ($) {
2874            
2875        ## Step 9        ## Step 9
2876        $insert->($clone->[0]);        $insert->($clone->[0]);
2877        push @$open_elements, $clone;        push @{$self->{open_elements}}, $clone;
2878                
2879        ## Step 10        ## Step 10
2880        $active_formatting_elements->[$i] = $open_elements->[-1];        $active_formatting_elements->[$i] = $self->{open_elements}->[-1];
2881    
2882        ## Step 11        ## Step 11
2883        unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {        unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {
2884            !!!cp ('t36');
2885          ## Step 7'          ## Step 7'
2886          $i++;          $i++;
2887          $entry = $active_formatting_elements->[$i];          $entry = $active_formatting_elements->[$i];
2888                    
2889          redo S7;          redo S7;
2890        }        }
2891    
2892          !!!cp ('t37');
2893      } # S7      } # S7
2894    }; # $reconstruct_active_formatting_elements    }; # $reconstruct_active_formatting_elements
2895    
2896    my $clear_up_to_marker = sub {    my $clear_up_to_marker = sub {
2897      for (reverse 0..$#$active_formatting_elements) {      for (reverse 0..$#$active_formatting_elements) {
2898        if ($active_formatting_elements->[$_]->[0] eq '#marker') {        if ($active_formatting_elements->[$_]->[0] eq '#marker') {
2899            !!!cp ('t38');
2900          splice @$active_formatting_elements, $_;          splice @$active_formatting_elements, $_;
2901          return;          return;
2902        }        }
2903      }      }
2904    
2905        !!!cp ('t39');
2906    }; # $clear_up_to_marker    }; # $clear_up_to_marker
2907    
2908    my $reset_insertion_mode = sub {    my $insert;
2909    
2910      my $parse_rcdata = sub ($) {
2911        my ($content_model_flag) = @_;
2912    
2913      ## Step 1      ## Step 1
2914      my $last;      my $start_tag_name = $token->{tag_name};
2915            my $el;
2916        !!!create-element ($el, $start_tag_name, $token->{attributes});
2917    
2918      ## Step 2      ## Step 2
2919      my $i = -1;      $insert->($el);
2920      my $node = $open_elements->[$i];  
       
2921      ## Step 3      ## Step 3
2922      S3: {      $self->{content_model} = $content_model_flag; # CDATA or RCDATA
2923        $last = 1 if $open_elements->[0]->[0] eq $node->[0];      delete $self->{escape}; # MUST
       ## TODO: the element whose inner_html is set is neither td nor th, then $node = the element  
       
       ## 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]};  
       $insertion_mode = $new_mode and return if defined $new_mode;  
         
       ## Step 14  
       if ($node->[1] eq 'html') {  
         unless (defined $head_element) {  
           $insertion_mode = 'before head';  
         } else {  
           $insertion_mode = 'after head';  
         }  
         return;  
       }  
         
       ## Step 15  
       $insertion_mode = 'in body' and return if $last;  
         
       ## Step 16  
       $i--;  
       $node = $open_elements->[$i];  
         
       ## Step 17  
       redo S3;  
     } # S3  
   }; # $reset_insertion_mode  
2924    
2925    my $style_start_tag = sub {      ## Step 4
     my $style_el; !!!create-element ($style_el, 'style');  
     ## $insertion_mode eq 'in head' and ... (always true)  
     (($insertion_mode eq 'in head' and defined $head_element)  
      ? $head_element : $open_elements->[-1]->[0])  
       ->append_child ($style_el);  
     $self->{content_model_flag} = 'CDATA';  
                 
2926      my $text = '';      my $text = '';
2927      !!!next-token;      !!!next-token;
2928      while ($token->{type} eq 'character') {      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing
2929          !!!cp ('t40');
2930        $text .= $token->{data};        $text .= $token->{data};
2931        !!!next-token;        !!!next-token;
2932      } # stop if non-character token or tokenizer stops tokenising      }
2933    
2934        ## Step 5
2935      if (length $text) {      if (length $text) {
2936        $style_el->manakai_append_text ($text);        !!!cp ('t41');
2937          my $text = $self->{document}->create_text_node ($text);
2938          $el->append_child ($text);
2939      }      }
2940        
2941      $self->{content_model_flag} = 'PCDATA';      ## Step 6
2942                      $self->{content_model} = PCDATA_CONTENT_MODEL;
2943      if ($token->{type} eq 'end tag' and $token->{tag_name} eq 'style') {  
2944        ## Step 7
2945        if ($token->{type} == END_TAG_TOKEN and
2946            $token->{tag_name} eq $start_tag_name) {
2947          !!!cp ('t42');
2948        ## Ignore the token        ## Ignore the token
2949      } else {      } else {
2950        !!!parse-error;        ## NOTE: An end-of-file token.
2951        ## ISSUE: And ignore?        if ($content_model_flag == CDATA_CONTENT_MODEL) {
2952            !!!cp ('t43');
2953            !!!parse-error (type => 'in CDATA:#'.$token->{type});
2954          } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {
2955            !!!cp ('t44');
2956            !!!parse-error (type => 'in RCDATA:#'.$token->{type});
2957          } else {
2958            die "$0: $content_model_flag in parse_rcdata";
2959          }
2960      }      }
2961      !!!next-token;      !!!next-token;
2962    }; # $style_start_tag    }; # $parse_rcdata
2963    
2964    my $script_start_tag = sub {    my $script_start_tag = sub () {
2965      my $script_el;      my $script_el;
2966      !!!create-element ($script_el, 'script', $token->{attributes});      !!!create-element ($script_el, 'script', $token->{attributes});
2967      ## TODO: mark as "parser-inserted"      ## TODO: mark as "parser-inserted"
2968    
2969      $self->{content_model_flag} = 'CDATA';      $self->{content_model} = CDATA_CONTENT_MODEL;
2970        delete $self->{escape}; # MUST
2971            
2972      my $text = '';      my $text = '';
2973      !!!next-token;      !!!next-token;
2974      while ($token->{type} eq 'character') {      while ($token->{type} == CHARACTER_TOKEN) {
2975          !!!cp ('t45');
2976        $text .= $token->{data};        $text .= $token->{data};
2977        !!!next-token;        !!!next-token;
2978      } # stop if non-character token or tokenizer stops tokenising      } # stop if non-character token or tokenizer stops tokenising
2979      if (length $text) {      if (length $text) {
2980          !!!cp ('t46');
2981        $script_el->manakai_append_text ($text);        $script_el->manakai_append_text ($text);
2982      }      }
2983                                
2984      $self->{content_model_flag} = 'PCDATA';      $self->{content_model} = PCDATA_CONTENT_MODEL;
2985    
2986      if ($token->{type} eq 'end tag' and      if ($token->{type} == END_TAG_TOKEN and
2987          $token->{tag_name} eq 'script') {          $token->{tag_name} eq 'script') {
2988          !!!cp ('t47');
2989        ## Ignore the token        ## Ignore the token
2990      } else {      } else {
2991        !!!parse-error;        !!!cp ('t48');
2992          !!!parse-error (type => 'in CDATA:#'.$token->{type});
2993        ## ISSUE: And ignore?        ## ISSUE: And ignore?
2994        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
2995      }      }
2996            
2997      ## TODO: inner_html mode then mark as "already executed" and skip      if (defined $self->{inner_html_node}) {
2998      if (1) {        !!!cp ('t49');
2999          ## TODO: mark as "already executed"
3000        } else {
3001          !!!cp ('t50');
3002        ## TODO: $old_insertion_point = current insertion point        ## TODO: $old_insertion_point = current insertion point
3003        ## TODO: insertion point = just before the next input character        ## TODO: insertion point = just before the next input character
3004          
3005        (($insertion_mode eq 'in head' and defined $head_element)        $insert->($script_el);
        ? $head_element : $open_elements->[-1]->[0])->append_child ($script_el);  
3006                
3007        ## TODO: insertion point = $old_insertion_point (might be "undefined")        ## TODO: insertion point = $old_insertion_point (might be "undefined")
3008                
# Line 1815  sub _construct_tree ($) { Line 3012  sub _construct_tree ($) {
3012      !!!next-token;      !!!next-token;
3013    }; # $script_start_tag    }; # $script_start_tag
3014    
3015      ## NOTE: $open_tables->[-1]->[0] is the "current table" element node.
3016      ## NOTE: $open_tables->[-1]->[1] is the "tainted" flag.
3017      my $open_tables = [[$self->{open_elements}->[0]->[0]]];
3018    
3019    my $formatting_end_tag = sub {    my $formatting_end_tag = sub {
3020      my $tag_name = shift;      my $tag_name = shift;
3021    
3022        ## NOTE: The adoption agency algorithm (AAA).
3023    
3024      FET: {      FET: {
3025        ## Step 1        ## Step 1
3026        my $formatting_element;        my $formatting_element;
3027        my $formatting_element_i_in_active;        my $formatting_element_i_in_active;
3028        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
3029          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {
3030              !!!cp ('t51');
3031            $formatting_element = $active_formatting_elements->[$_];            $formatting_element = $active_formatting_elements->[$_];
3032            $formatting_element_i_in_active = $_;            $formatting_element_i_in_active = $_;
3033            last AFE;            last AFE;
3034          } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {          } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {
3035              !!!cp ('t52');
3036            last AFE;            last AFE;
3037          }          }
3038        } # AFE        } # AFE
3039        unless (defined $formatting_element) {        unless (defined $formatting_element) {
3040          !!!parse-error;          !!!cp ('t53');
3041            !!!parse-error (type => 'unmatched end tag:'.$tag_name);
3042          ## Ignore the token          ## Ignore the token
3043          !!!next-token;          !!!next-token;
3044          return;          return;
# Line 1840  sub _construct_tree ($) { Line 3046  sub _construct_tree ($) {
3046        ## has an element in scope        ## has an element in scope
3047        my $in_scope = 1;        my $in_scope = 1;
3048        my $formatting_element_i_in_open;          my $formatting_element_i_in_open;  
3049        INSCOPE: for (reverse 0..$#$open_elements) {        INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3050          my $node = $open_elements->[$_];          my $node = $self->{open_elements}->[$_];
3051          if ($node->[0] eq $formatting_element->[0]) {          if ($node->[0] eq $formatting_element->[0]) {
3052            if ($in_scope) {            if ($in_scope) {
3053                !!!cp ('t54');
3054              $formatting_element_i_in_open = $_;              $formatting_element_i_in_open = $_;
3055              last INSCOPE;              last INSCOPE;
3056            } else { # in open elements but not in scope            } else { # in open elements but not in scope
3057              !!!parse-error;              !!!cp ('t55');
3058                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3059              ## Ignore the token              ## Ignore the token
3060              !!!next-token;              !!!next-token;
3061              return;              return;
3062            }            }
3063          } elsif ({          } elsif ({
3064                    table => 1, caption => 1, td => 1, th => 1,                    applet => 1, table => 1, caption => 1, td => 1, th => 1,
3065                    button => 1, marquee => 1, object => 1, html => 1,                    button => 1, marquee => 1, object => 1, html => 1,
3066                   }->{$node->[1]}) {                   }->{$node->[1]}) {
3067              !!!cp ('t56');
3068            $in_scope = 0;            $in_scope = 0;
3069          }          }
3070        } # INSCOPE        } # INSCOPE
3071        unless (defined $formatting_element_i_in_open) {        unless (defined $formatting_element_i_in_open) {
3072          !!!parse-error;          !!!cp ('t57');
3073            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3074          pop @$active_formatting_elements; # $formatting_element          pop @$active_formatting_elements; # $formatting_element
3075          !!!next-token; ## TODO: ok?          !!!next-token; ## TODO: ok?
3076          return;          return;
3077        }        }
3078        if (not $open_elements->[-1]->[0] eq $formatting_element->[0]) {        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
3079          !!!parse-error;          !!!cp ('t58');
3080            !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3081        }        }
3082                
3083        ## Step 2        ## Step 2
3084        my $furthest_block;        my $furthest_block;
3085        my $furthest_block_i_in_open;        my $furthest_block_i_in_open;
3086        OE: for (reverse 0..$#$open_elements) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
3087          my $node = $open_elements->[$_];          my $node = $self->{open_elements}->[$_];
3088          if (not $formatting_category->{$node->[1]} and          if (not $formatting_category->{$node->[1]} and
3089              #not $phrasing_category->{$node->[1]} and              #not $phrasing_category->{$node->[1]} and
3090              ($special_category->{$node->[1]} or              ($special_category->{$node->[1]} or
3091               $scoping_category->{$node->[1]})) {               $scoping_category->{$node->[1]})) { ## Scoping is redundant, maybe
3092              !!!cp ('t59');
3093            $furthest_block = $node;            $furthest_block = $node;
3094            $furthest_block_i_in_open = $_;            $furthest_block_i_in_open = $_;
3095          } elsif ($node->[0] eq $formatting_element->[0]) {          } elsif ($node->[0] eq $formatting_element->[0]) {
3096              !!!cp ('t60');
3097            last OE;            last OE;
3098          }          }
3099        } # OE        } # OE
3100                
3101        ## Step 3        ## Step 3
3102        unless (defined $furthest_block) { # MUST        unless (defined $furthest_block) { # MUST
3103          splice @$open_elements, $formatting_element_i_in_open;          !!!cp ('t61');
3104            splice @{$self->{open_elements}}, $formatting_element_i_in_open;
3105          splice @$active_formatting_elements, $formatting_element_i_in_active, 1;          splice @$active_formatting_elements, $formatting_element_i_in_active, 1;
3106          !!!next-token;          !!!next-token;
3107          return;          return;
3108        }        }
3109                
3110        ## Step 4        ## Step 4
3111        my $common_ancestor_node = $open_elements->[$formatting_element_i_in_open - 1];        my $common_ancestor_node = $self->{open_elements}->[$formatting_element_i_in_open - 1];
3112                
3113        ## Step 5        ## Step 5
3114        my $furthest_block_parent = $furthest_block->[0]->parent_node;        my $furthest_block_parent = $furthest_block->[0]->parent_node;
3115        if (defined $furthest_block_parent) {        if (defined $furthest_block_parent) {
3116            !!!cp ('t62');
3117          $furthest_block_parent->remove_child ($furthest_block->[0]);          $furthest_block_parent->remove_child ($furthest_block->[0]);
3118        }        }
3119                
# Line 1914  sub _construct_tree ($) { Line 3129  sub _construct_tree ($) {
3129        S7: {        S7: {
3130          ## Step 1          ## Step 1
3131          $node_i_in_open--;          $node_i_in_open--;
3132          $node = $open_elements->[$node_i_in_open];          $node = $self->{open_elements}->[$node_i_in_open];
3133                    
3134          ## Step 2          ## Step 2
3135          my $node_i_in_active;          my $node_i_in_active;
3136          S7S2: {          S7S2: {
3137            for (reverse 0..$#$active_formatting_elements) {            for (reverse 0..$#$active_formatting_elements) {
3138              if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {              if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
3139                  !!!cp ('t63');
3140                $node_i_in_active = $_;                $node_i_in_active = $_;
3141                last S7S2;                last S7S2;
3142              }              }
3143            }            }
3144            splice @$open_elements, $node_i_in_open, 1;            splice @{$self->{open_elements}}, $node_i_in_open, 1;
3145            redo S7;            redo S7;
3146          } # S7S2          } # S7S2
3147                    
# Line 1934  sub _construct_tree ($) { Line 3150  sub _construct_tree ($) {
3150                    
3151          ## Step 4          ## Step 4
3152          if ($last_node->[0] eq $furthest_block->[0]) {          if ($last_node->[0] eq $furthest_block->[0]) {
3153              !!!cp ('t64');
3154            $bookmark_prev_el = $node->[0];            $bookmark_prev_el = $node->[0];
3155          }          }
3156                    
3157          ## Step 5          ## Step 5
3158          if ($node->[0]->has_child_nodes ()) {          if ($node->[0]->has_child_nodes ()) {
3159              !!!cp ('t65');
3160            my $clone = [$node->[0]->clone_node (0), $node->[1]];            my $clone = [$node->[0]->clone_node (0), $node->[1]];
3161            $active_formatting_elements->[$node_i_in_active] = $clone;            $active_formatting_elements->[$node_i_in_active] = $clone;
3162            $open_elements->[$node_i_in_open] = $clone;            $self->{open_elements}->[$node_i_in_open] = $clone;
3163            $node = $clone;            $node = $clone;
3164          }          }
3165                    
# Line 1956  sub _construct_tree ($) { Line 3174  sub _construct_tree ($) {
3174        } # S7          } # S7  
3175                
3176        ## Step 8        ## Step 8
3177        $common_ancestor_node->[0]->append_child ($last_node->[0]);        if ({
3178               table => 1, tbody => 1, tfoot => 1, thead => 1, tr => 1,
3179              }->{$common_ancestor_node->[1]}) {
3180            my $foster_parent_element;
3181            my $next_sibling;
3182                             OE: for (reverse 0..$#{$self->{open_elements}}) {
3183                               if ($self->{open_elements}->[$_]->[1] eq 'table') {
3184                                 my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3185                                 if (defined $parent and $parent->node_type == 1) {
3186                                   !!!cp ('t65.1');
3187                                   $foster_parent_element = $parent;
3188                                   $next_sibling = $self->{open_elements}->[$_]->[0];
3189                                 } else {
3190                                   !!!cp ('t65.2');
3191                                   $foster_parent_element
3192                                     = $self->{open_elements}->[$_ - 1]->[0];
3193                                 }
3194                                 last OE;
3195                               }
3196                             } # OE
3197                             $foster_parent_element = $self->{open_elements}->[0]->[0]
3198                               unless defined $foster_parent_element;
3199            $foster_parent_element->insert_before ($last_node->[0], $next_sibling);
3200            $open_tables->[-1]->[1] = 1; # tainted
3201          } else {
3202            !!!cp ('t65.3');
3203            $common_ancestor_node->[0]->append_child ($last_node->[0]);
3204          }
3205                
3206        ## Step 9        ## Step 9
3207        my $clone = [$formatting_element->[0]->clone_node (0),        my $clone = [$formatting_element->[0]->clone_node (0),
# Line 1973  sub _construct_tree ($) { Line 3218  sub _construct_tree ($) {
3218        my $i;        my $i;
3219        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
3220          if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {          if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {
3221              !!!cp ('t66');
3222            splice @$active_formatting_elements, $_, 1;            splice @$active_formatting_elements, $_, 1;
3223            $i-- and last AFE if defined $i;            $i-- and last AFE if defined $i;
3224          } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {          } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {
3225              !!!cp ('t67');
3226            $i = $_;            $i = $_;
3227          }          }
3228        } # AFE        } # AFE
# Line 1983  sub _construct_tree ($) { Line 3230  sub _construct_tree ($) {
3230                
3231        ## Step 13        ## Step 13
3232        undef $i;        undef $i;
3233        OE: for (reverse 0..$#$open_elements) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
3234          if ($open_elements->[$_]->[0] eq $formatting_element->[0]) {          if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {
3235            splice @$open_elements, $_, 1;            !!!cp ('t68');
3236              splice @{$self->{open_elements}}, $_, 1;
3237            $i-- and last OE if defined $i;            $i-- and last OE if defined $i;
3238          } elsif ($open_elements->[$_]->[0] eq $furthest_block->[0]) {          } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {
3239              !!!cp ('t69');
3240            $i = $_;            $i = $_;
3241          }          }
3242        } # OE        } # OE
3243        splice @$open_elements, $i + 1, 1, $clone;        splice @{$self->{open_elements}}, $i + 1, 1, $clone;
3244                
3245        ## Step 14        ## Step 14
3246        redo FET;        redo FET;
3247      } # FET      } # FET
3248    }; # $formatting_end_tag    }; # $formatting_end_tag
3249    
3250    my $insert_to_current = sub {    $insert = my $insert_to_current = sub {
3251      $open_elements->[-1]->[0]->append_child (shift);      $self->{open_elements}->[-1]->[0]->append_child ($_[0]);
3252    }; # $insert_to_current    }; # $insert_to_current
3253    
3254    my $insert_to_foster = sub {    my $insert_to_foster = sub {
3255                         my $child = shift;      my $child = shift;
3256                         if ({      if ({
3257                              table => 1, tbody => 1, tfoot => 1,           table => 1, tbody => 1, tfoot => 1, thead => 1, tr => 1,
3258                              thead => 1, tr => 1,          }->{$self->{open_elements}->[-1]->[1]}) {
3259                             }->{$open_elements->[-1]->[1]}) {        # MUST
3260                           # MUST        my $foster_parent_element;
3261                           my $foster_parent_element;        my $next_sibling;
3262                           my $next_sibling;                           OE: for (reverse 0..$#{$self->{open_elements}}) {
3263                           OE: for (reverse 0..$#$open_elements) {                             if ($self->{open_elements}->[$_]->[1] eq 'table') {
3264                             if ($open_elements->[$_]->[1] eq 'table') {                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
                              my $parent = $open_elements->[$_]->[0]->parent_node;  
3265                               if (defined $parent and $parent->node_type == 1) {                               if (defined $parent and $parent->node_type == 1) {
3266                                   !!!cp ('t70');
3267                                 $foster_parent_element = $parent;                                 $foster_parent_element = $parent;
3268                                 $next_sibling = $open_elements->[$_]->[0];                                 $next_sibling = $self->{open_elements}->[$_]->[0];
3269                               } else {                               } else {
3270                                   !!!cp ('t71');
3271                                 $foster_parent_element                                 $foster_parent_element
3272                                   = $open_elements->[$_ - 1]->[0];                                   = $self->{open_elements}->[$_ - 1]->[0];
3273                               }                               }
3274                               last OE;                               last OE;
3275                             }                             }
3276                           } # OE                           } # OE
3277                           $foster_parent_element = $open_elements->[0]->[0]                           $foster_parent_element = $self->{open_elements}->[0]->[0]
3278                             unless defined $foster_parent_element;                             unless defined $foster_parent_element;
3279                           $foster_parent_element->insert_before                           $foster_parent_element->insert_before
3280                             ($child, $next_sibling);                             ($child, $next_sibling);
3281                         } else {        $open_tables->[-1]->[1] = 1; # tainted
3282                           $open_elements->[-1]->[0]->append_child ($child);      } else {
3283                         }        !!!cp ('t72');
3284          $self->{open_elements}->[-1]->[0]->append_child ($child);
3285        }
3286    }; # $insert_to_foster    }; # $insert_to_foster
3287    
3288    my $in_body = sub {    B: {
3289      my $insert = shift;      if ($token->{type} == DOCTYPE_TOKEN) {
3290      if ($token->{type} eq 'start tag') {        !!!cp ('t73');
3291        if ($token->{tag_name} eq 'script') {        !!!parse-error (type => 'DOCTYPE in the middle');
3292          $script_start_tag->();        ## Ignore the token
3293          return;        ## Stay in the phase
3294        } elsif ($token->{tag_name} eq 'style') {        !!!next-token;
3295          $style_start_tag->();        redo B;
3296          return;      } elsif ($token->{type} == START_TAG_TOKEN and
3297        } elsif ({               $token->{tag_name} eq 'html') {
3298                  base => 1, link => 1, meta => 1,        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
3299                 }->{$token->{tag_name}}) {          !!!cp ('t79');
3300          !!!parse-error ($token->{tag_name}.' in body');          !!!parse-error (type => 'after html:html');
3301          ## NOTE: This is an "as if in head" code clone          $self->{insertion_mode} = AFTER_BODY_IM;
3302          my $el;        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
3303          !!!create-element ($el, $token->{tag_name}, $token->{attributes});          !!!cp ('t80');
3304          if (defined $head_element) {          !!!parse-error (type => 'after html:html');
3305            $head_element->append_child ($el);          $self->{insertion_mode} = AFTER_FRAMESET_IM;
         } else {  
           $insert->($el);  
         }  
           
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'title') {  
         !!!parse-error ('title in body');  
         ## NOTE: There is an "as if in head" code clone  
         my $title_el;  
         !!!create-element ($title_el, 'title', $token->{attributes});  
         (defined $head_element ? $head_element : $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;  
           ## ISSUE: And ignore?  
         }  
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'body') {  
         !!!parse-error;  
                 
         if (@$open_elements == 1 or  
             $open_elements->[1]->[1] ne 'body') {  
           ## Ignore the token  
         } else {  
           my $body_el = $open_elements->[1]->[0];  
           for my $attr_name (keys %{$token->{attributes}}) {  
             unless ($body_el->has_attribute_ns (undef, $attr_name)) {  
               $body_el->set_attribute_ns  
                 (undef, [undef, $attr_name],  
                  $token->{attributes}->{$attr_name}->{value});  
             }  
           }  
         }  
         !!!next-token;  
         return;  
       } elsif ({  
                 address => 1, blockquote => 1, center => 1, dir => 1,  
                 div => 1, dl => 1, fieldset => 1, listing => 1,  
                 menu => 1, ol => 1, p => 1, ul => 1,  
                 pre => 1,  
                }->{$token->{tag_name}}) {  
         ## has a p element in scope  
         INSCOPE: for (reverse @$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});  
         if ($token->{tag_name} eq 'pre') {  
           !!!next-token;  
           if ($token->{type} eq 'character') {  
             $token->{data} =~ s/^\x0A//;  
             unless (length $token->{data}) {  
               !!!next-token;  
             }  
           }  
         } else {  
           !!!next-token;  
         }  
         return;  
       } elsif ($token->{tag_name} eq 'form') {  
         if (defined $form_element) {  
           !!!parse-error;  
           ## Ignore the token  
         } else {  
           ## has a p element in scope  
           INSCOPE: for (reverse @$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});  
           $form_element = $open_elements->[-1]->[0];  
           !!!next-token;  
           return;  
         }  
       } elsif ($token->{tag_name} eq 'li') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @$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 = $open_elements->[$i];  
         LI: {  
           ## Step 2  
           if ($node->[1] eq 'li') {  
             splice @$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 = $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 @$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 = $open_elements->[$i];  
         LI: {  
           ## Step 2  
           if ($node->[1] eq 'dt' or $node->[1] eq 'dd') {  
             splice @$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 = $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 @$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..$#$open_elements) {  
           my $node = $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..$#$open_elements) {  
           my $node = $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;  
           splice @$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 ('a in 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..$#$open_elements) {  
               if ($open_elements->[$_]->[0] eq $node->[0]) {  
                 splice @$open_elements, $_, 1;  
                 last OE;  
               }  
             } # OE  
             last AFE;  
           } elsif ($node->[0] eq '#marker') {  
             last AFE;  
           }  
         } # AFE  
             
         $reconstruct_active_formatting_elements->($insert_to_current);  
   
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         push @$active_formatting_elements, $open_elements->[-1];  
   
         !!!next-token;  
         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, $open_elements->[-1];  
           
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'button') {  
         ## has a button element in scope  
         INSCOPE: for (reverse 0..$#$open_elements) {  
           my $node = $open_elements->[$_];  
           if ($node->[1] eq 'button') {  
             !!!parse-error;  
             !!!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', ''];  
   
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'marquee' or  
                $token->{tag_name} eq 'object') {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         push @$active_formatting_elements, ['#marker', ''];  
           
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'xmp') {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
           
         $self->{content_model_flag} = 'CDATA';  
           
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'table') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @$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});  
             
         $insertion_mode = 'in table';  
             
         !!!next-token;  
         return;  
       } elsif ({  
                 area => 1, basefont => 1, bgsound => 1, br => 1,  
                 embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,  
                 image => 1,  
                }->{$token->{tag_name}}) {  
         if ($token->{tag_name} eq 'image') {  
           !!!parse-error;  
           $token->{tag_name} = 'img';  
         }  
           
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         pop @$open_elements;  
           
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'hr') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @$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});  
         pop @$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 $form_element if defined  
         pop @$open_elements;  
           
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'isindex') {  
         !!!parse-error;  
           
         if (defined $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: 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};  
           !!!next-token;  
         }  
         if (length $text) {  
           $el->manakai_append_text ($text);  
         }  
           
         $self->{content_model_flag} = 'PCDATA';  
           
         if ($token->{type} eq 'end tag' and  
             $token->{tag_name} eq $tag_name) {  
           ## Ignore the token  
         } else {  
           !!!parse-error;  
           ## ISSUE: And ignore?  
         }  
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'select') {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
           
         $insertion_mode = 'in select';  
         !!!next-token;  
         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,  
                }->{$token->{tag_name}}) {  
         !!!parse-error;  
         ## Ignore the token  
         !!!next-token;  
         return;  
           
         ## ISSUE: An issue on HTML5 new elements in the spec.  
3306        } else {        } else {
3307          $reconstruct_active_formatting_elements->($insert_to_current);          !!!cp ('t81');
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
           
         !!!next-token;  
         return;  
3308        }        }
3309      } elsif ($token->{type} eq 'end tag') {  
3310        if ($token->{tag_name} eq 'body') {        !!!cp ('t82');
3311          if (@$open_elements > 1 and $open_elements->[1]->[1] eq 'body') {        !!!parse-error (type => 'not first start tag');
3312            ## ISSUE: There is an issue in the spec.        my $top_el = $self->{open_elements}->[0]->[0];
3313            if ($open_elements->[-1]->[1] ne 'body') {        for my $attr_name (keys %{$token->{attributes}}) {
3314              !!!parse-error;          unless ($top_el->has_attribute_ns (undef, $attr_name)) {
3315            }            !!!cp ('t84');
3316            $insertion_mode = 'after body';            $top_el->set_attribute_ns
3317            !!!next-token;              (undef, [undef, $attr_name],
3318            return;               $token->{attributes}->{$attr_name}->{value});
         } else {  
           !!!parse-error;  
           ## Ignore the token  
           !!!next-token;  
           return;  
         }  
       } elsif ($token->{tag_name} eq 'html') {  
         if (@$open_elements > 1 and $open_elements->[1]->[1] eq 'body') {  
           ## ISSUE: There is an issue in the spec.  
           if ($open_elements->[-1]->[1] ne 'body') {  
             !!!parse-error;  
           }  
           $insertion_mode = 'after body';  
           ## reprocess  
           return;  
         } else {  
           !!!parse-error;  
           ## 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..$#$open_elements) {  
           my $node = $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,  
                 }->{$open_elements->[-1]->[1]}) {  
               !!!back-token;  
               $token = {type => 'end tag',  
                         tag_name => $open_elements->[-1]->[1]}; # MUST  
               return;  
             }  
             $i = $_;  
             last INSCOPE unless $token->{tag_name} eq 'p';  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
           
         if ($open_elements->[-1]->[1] ne $token->{tag_name}) {  
           !!!parse-error;  
         }  
           
         splice @$open_elements, $i if defined $i;  
         undef $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..$#$open_elements) {  
           my $node = $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,  
                 }->{$open_elements->[-1]->[1]}) {  
               !!!back-token;  
               $token = {type => 'end tag',  
                         tag_name => $open_elements->[-1]->[1]}; # MUST  
               return;  
             }  
             $i = $_;  
             last INSCOPE;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
           
         if ($open_elements->[-1]->[1] ne $token->{tag_name}) {  
           !!!parse-error;  
3319          }          }
3320                  }
3321          splice @$open_elements, $i if defined $i;        !!!next-token;
3322          !!!next-token;        redo B;
3323          return;      } elsif ($token->{type} == COMMENT_TOKEN) {
3324        } elsif ({        my $comment = $self->{document}->create_comment ($token->{data});
3325                  a => 1,        if ($self->{insertion_mode} & AFTER_HTML_IMS) {
3326                  b => 1, big => 1, em => 1, font => 1, i => 1,          !!!cp ('t85');
3327                  nobr => 1, s => 1, small => 1, strile => 1,          $self->{document}->append_child ($comment);
3328                  strong => 1, tt => 1, u => 1,        } elsif ($self->{insertion_mode} == AFTER_BODY_IM) {
3329                 }->{$token->{tag_name}}) {          !!!cp ('t86');
3330          $formatting_end_tag->($token->{tag_name});          $self->{open_elements}->[0]->[0]->append_child ($comment);
         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;  
         ## Ignore the token  
         !!!next-token;  
         return;  
           
         ## ISSUE: Issue on HTML5 new elements in spec  
           
3331        } else {        } else {
3332          ## Step 1          !!!cp ('t87');
3333          my $node_i = -1;          $self->{open_elements}->[-1]->[0]->append_child ($comment);
         my $node = $open_elements->[$node_i];  
   
         ## Step 2  
         S2: {  
           if ($node->[1] eq $token->{tag_name}) {  
             ## Step 1  
             ## generate implied end tags  
             if ({  
                  dd => 1, dt => 1, li => 1, p => 1,  
                  td => 1, th => 1, tr => 1,  
                 }->{$open_elements->[-1]->[1]}) {  
               !!!back-token;  
               $token = {type => 'end tag',  
                         tag_name => $open_elements->[-1]->[1]}; # MUST  
               return;  
             }  
           
             ## Step 2  
             if ($token->{tag_name} ne $open_elements->[-1]->[1]) {  
               !!!parse-error;  
             }  
               
             ## Step 3  
             splice @$open_elements, $node_i;  
             last S2;  
           } else {  
             ## Step 3  
             if (not $formatting_category->{$node->[1]} and  
                 #not $phrasing_category->{$node->[1]} and  
                 ($special_category->{$node->[1]} or  
                  $scoping_category->{$node->[1]})) {  
               !!!parse-error;  
               ## Ignore the token  
               !!!next-token;  
               last S2;  
             }  
           }  
             
           ## Step 4  
           $node_i--;  
           $node = $open_elements->[$node_i];  
             
           ## Step 5;  
           redo S2;  
         } # S2  
3334        }        }
3335      }        !!!next-token;
3336    }; # $in_body        redo B;
3337        } elsif ($self->{insertion_mode} & HEAD_IMS) {
3338    B: {        if ($token->{type} == CHARACTER_TOKEN) {
     if ($phase eq 'initial') {  
       if ($token->{type} eq 'DOCTYPE') {  
         if ($token->{error}) {  
           ## ISSUE: Spec currently left this case undefined.  
           !!!parse-error ('bogus DOCTYPE');  
         }  
         my $doctype = $self->{document}->create_document_type_definition  
           ($token->{name});  
         $self->{document}->append_child ($doctype);  
         $phase = 'root element';  
         !!!next-token;  
         redo B;  
       } elsif ({  
                 comment => 1,  
                 'start tag' => 1,  
                 'end tag' => 1,  
                 'end-of-file' => 1,  
                }->{$token->{type}}) {  
         ## ISSUE: Spec currently left this case undefined.  
         !!!parse-error ('missing DOCTYPE');  
         $phase = 'root element';  
         ## reprocess  
         redo B;  
       } elsif ($token->{type} eq 'character') {  
3339          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
3340            $self->{document}->manakai_append_text ($1);            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3341            ## ISSUE: DOM3 Core does not allow Document > Text              !!!cp ('t88.2');
3342            unless (length $token->{data}) {              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
3343              ## Stay in the phase            } else {
3344                !!!cp ('t88.1');
3345                ## Ignore the token.
3346              !!!next-token;              !!!next-token;
3347              redo B;              redo B;
3348            }            }
         }  
         ## ISSUE: Spec currently left this case undefined.  
         !!!parse-error ('missing DOCTYPE');  
         $phase = 'root element';  
         ## reprocess  
         redo B;  
       } else {  
         die "$0: $token->{type}: Unknown token";  
       }  
     } elsif ($phase eq 'root element') {  
       if ($token->{type} eq 'DOCTYPE') {  
         !!!parse-error;  
         ## Ignore the token  
         ## Stay in the phase  
         !!!next-token;  
         redo B;  
       } elsif ($token->{type} eq 'comment') {  
         my $comment = $self->{document}->create_comment ($token->{data});  
         $self->{document}->append_child ($comment);  
         ## Stay in the phase  
         !!!next-token;  
         redo B;  
       } elsif ($token->{type} eq 'character') {  
         if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
           $self->{document}->manakai_append_text ($1);  
           ## ISSUE: DOM3 Core does not allow Document > Text  
3349            unless (length $token->{data}) {            unless (length $token->{data}) {
3350              ## Stay in the phase              !!!cp ('t88');
3351              !!!next-token;              !!!next-token;
3352              redo B;              redo B;
3353            }            }
3354          }          }
3355          #  
3356        } elsif ({          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3357                  'start tag' => 1,            !!!cp ('t89');
3358                  'end tag' => 1,            ## As if <head>
3359                  'end-of-file' => 1,            !!!create-element ($self->{head_element}, 'head');
3360                 }->{$token->{type}}) {            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3361          ## ISSUE: There is an issue in the spec            push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3362          #  
3363        } else {            ## Reprocess in the "in head" insertion mode...
3364          die "$0: $token->{type}: Unknown token";            pop @{$self->{open_elements}};
3365        }  
3366        my $root_element; !!!create-element ($root_element, 'html');            ## Reprocess in the "after head" insertion mode...
3367        $self->{document}->append_child ($root_element);          } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3368        $open_elements = [[$root_element, 'html']];            !!!cp ('t90');
3369        $phase = 'main';            ## As if </noscript>
3370        ## reprocess            pop @{$self->{open_elements}};
3371        redo B;            !!!parse-error (type => 'in noscript:#character');
3372      } elsif ($phase eq 'main') {            
3373        if ($token->{type} eq 'DOCTYPE') {            ## Reprocess in the "in head" insertion mode...
3374          !!!parse-error;            ## As if </head>
3375          ## Ignore the token            pop @{$self->{open_elements}};
3376          ## Stay in the phase  
3377          !!!next-token;            ## Reprocess in the "after head" insertion mode...
3378          redo B;          } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3379        } elsif ($token->{type} eq 'start tag' and            !!!cp ('t91');
3380                 $token->{tag_name} eq 'html') {            pop @{$self->{open_elements}};
3381          ## TODO: unless it is the first start tag token, parse-error  
3382          my $top_el = $open_elements->[0]->[0];            ## Reprocess in the "after head" insertion mode...
         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});  
           }  
         }  
         !!!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,  
             }->{$open_elements->[-1]->[1]}) {  
           !!!back-token;  
           $token = {type => 'end tag', tag_name => $open_elements->[-1]->[1]};  
           redo B;  
         }  
           
         if (@$open_elements > 2 or  
             (@$open_elements == 2 and $open_elements->[1]->[1] ne 'body')) {  
           !!!parse-error;  
3383          } else {          } else {
3384            ## TODO: inner_html parser and @$open_elements > 1 and $open_elements->[1] ne 'body', then parse-error            !!!cp ('t92');
3385          }          }
3386    
3387          ## Stop parsing              ## "after head" insertion mode
3388          last B;              ## As if <body>
3389                !!!insert-element ('body');
3390          ## ISSUE: There is an issue in the spec.              $self->{insertion_mode} = IN_BODY_IM;
       } else {  
         if ($insertion_mode eq 'before head') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $open_elements->[-1]->[0]->manakai_append_text ($1);  
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
             ## As if <head>  
             !!!create-element ($head_element, 'head');  
             $open_elements->[-1]->[0]->append_child ($head_element);  
             push @$open_elements, [$head_element, 'head'];  
             $insertion_mode = 'in head';  
3391              ## reprocess              ## reprocess
3392              redo B;              redo B;
3393            } elsif ($token->{type} eq 'comment') {            } elsif ($token->{type} == START_TAG_TOKEN) {
             my $comment = $self->{document}->create_comment ($token->{data});  
             $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 ($head_element, 'head', $attr);  
             $open_elements->[-1]->[0]->append_child ($head_element);  
             push @$open_elements, [$head_element, 'head'];  
             $insertion_mode = 'in head';  
3394              if ($token->{tag_name} eq 'head') {              if ($token->{tag_name} eq 'head') {
3395                !!!next-token;                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3396              #} elsif ({                  !!!cp ('t93');
3397              #          base => 1, link => 1, meta => 1,                  !!!create-element ($self->{head_element}, $token->{tag_name}, $token->{attributes});
3398              #          script => 1, style => 1, title => 1,                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3399              #         }->{$token->{tag_name}}) {                  push @{$self->{open_elements}}, [$self->{head_element}, $token->{tag_name}];
3400              #  ## reprocess                  $self->{insertion_mode} = IN_HEAD_IM;
3401              } else {                  !!!next-token;
3402                ## reprocess                  redo B;
3403              }                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3404              redo B;                  !!!cp ('t94');
3405            } elsif ($token->{type} eq 'end tag') {                  #
3406              if ($token->{tag_name} eq 'html') {                } else {
3407                ## As if <head>                  !!!cp ('t95');
3408                !!!create-element ($head_element, 'head');                  !!!parse-error (type => 'in head:head'); # or in head noscript
3409                $open_elements->[-1]->[0]->append_child ($head_element);                  ## Ignore the token
               push @$open_elements, [$head_element, 'head'];  
               $insertion_mode = 'in head';  
               ## reprocess  
               redo B;  
             } else {  
               !!!parse-error;  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
             }  
           } else {  
             die "$0: $token->{type}: Unknown type";  
           }  
         } elsif ($insertion_mode eq 'in head') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $open_elements->[-1]->[0]->manakai_append_text ($1);  
               unless (length $token->{data}) {  
3410                  !!!next-token;                  !!!next-token;
3411                  redo B;                  redo B;
3412                }                }
3413                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3414                  !!!cp ('t96');
3415                  ## As if <head>
3416                  !!!create-element ($self->{head_element}, 'head');
3417                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3418                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3419    
3420                  $self->{insertion_mode} = IN_HEAD_IM;
3421                  ## Reprocess in the "in head" insertion mode...
3422                } else {
3423                  !!!cp ('t97');
3424              }              }
               
             #  
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $open_elements->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ($token->{tag_name} eq 'title') {  
               ## NOTE: There is an "as if in head" code clone  
               my $title_el;  
               !!!create-element ($title_el, 'title', $token->{attributes});  
               (defined $head_element ? $head_element : $open_elements->[-1]->[0])  
                 ->append_child ($title_el);  
               $self->{content_model_flag} = 'RCDATA';  
3425    
3426                my $text = '';              if ($token->{tag_name} eq 'base') {
3427                !!!next-token;                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3428                while ($token->{type} eq 'character') {                  !!!cp ('t98');
3429                  $text .= $token->{data};                  ## As if </noscript>
3430                  !!!next-token;                  pop @{$self->{open_elements}};
3431                }                  !!!parse-error (type => 'in noscript:base');
               if (length $text) {  
                 $title_el->manakai_append_text ($text);  
               }  
3432                                
3433                $self->{content_model_flag} = 'PCDATA';                  $self->{insertion_mode} = IN_HEAD_IM;
3434                                  ## Reprocess in the "in head" insertion mode...
               if ($token->{type} eq 'end tag' and  
                   $token->{tag_name} eq 'title') {  
                 ## Ignore the token  
3435                } else {                } else {
3436                  !!!parse-error;                  !!!cp ('t99');
                 ## ISSUE: And ignore?  
3437                }                }
               !!!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 $head_element ? $head_element : $open_elements->[-1]->[0])  
                 ->append_child ($el);  
3438    
3439                !!!next-token;                ## NOTE: There is a "as if in head" code clone.
3440                redo B;                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3441              } elsif ($token->{tag_name} eq 'head') {                  !!!cp ('t100');
3442                !!!parse-error;                  !!!parse-error (type => 'after head:'.$token->{tag_name});
3443                ## Ignore the token                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'head') {  
               if ($open_elements->[-1]->[1] eq 'head') {  
                 pop @$open_elements;  
3444                } else {                } else {
3445                  !!!parse-error;                  !!!cp ('t101');
3446                }                }
3447                $insertion_mode = 'after head';                !!!insert-element ($token->{tag_name}, $token->{attributes});
3448                !!!next-token;                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
3449                redo B;                pop @{$self->{open_elements}} # <head>
3450              } elsif ($token->{tag_name} eq 'html') {                    if $self->{insertion_mode} == AFTER_HEAD_IM;
               #  
             } else {  
               !!!parse-error;  
               ## Ignore the token  
3451                !!!next-token;                !!!next-token;
3452                redo B;                redo B;
3453              }              } elsif ($token->{tag_name} eq 'link') {
3454            } else {                ## NOTE: There is a "as if in head" code clone.
3455              #                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3456            }                  !!!cp ('t102');
3457                    !!!parse-error (type => 'after head:'.$token->{tag_name});
3458            if ($open_elements->[-1]->[1] eq 'head') {                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3459              ## As if </head>                } else {
3460              pop @$open_elements;                  !!!cp ('t103');
           }  
           $insertion_mode = 'after head';  
           ## reprocess  
           redo B;  
   
           ## ISSUE: An issue in the spec.  
         } elsif ($insertion_mode eq 'after head') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $open_elements->[-1]->[0]->manakai_append_text ($1);  
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
3461                }                }
3462              }                !!!insert-element ($token->{tag_name}, $token->{attributes});
3463                              pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
3464              #                pop @{$self->{open_elements}} # <head>
3465            } elsif ($token->{type} eq 'comment') {                    if $self->{insertion_mode} == AFTER_HEAD_IM;
             my $comment = $self->{document}->create_comment ($token->{data});  
             $open_elements->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ($token->{tag_name} eq 'body') {  
               !!!insert-element ('body', $token->{attributes});  
               $insertion_mode = 'in body';  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'frameset') {  
               !!!insert-element ('frameset', $token->{attributes});  
               $insertion_mode = 'in frameset';  
3466                !!!next-token;                !!!next-token;
3467                redo B;                redo B;
3468              } elsif ({              } elsif ($token->{tag_name} eq 'meta') {
3469                        base => 1, link => 1, meta => 1,                ## NOTE: There is a "as if in head" code clone.
3470                        script=> 1, style => 1, title => 1,                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3471                       }->{$token->{tag_name}}) {                  !!!cp ('t104');
3472                !!!parse-error;                  !!!parse-error (type => 'after head:'.$token->{tag_name});
3473                 $insertion_mode = 'in head';                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3474                ## reprocess                } else {
3475                redo B;                  !!!cp ('t105');
             } else {  
               #  
             }  
           } else {  
             #  
           }  
             
           ## As if <body>  
           !!!insert-element ('body');  
           $insertion_mode = 'in body';  
           ## reprocess  
           redo B;  
         } elsif ($insertion_mode eq 'in body') {  
           if ($token->{type} eq 'character') {  
             ## NOTE: There is a code clone of "character in body".  
             $reconstruct_active_formatting_elements->($insert_to_current);  
               
             $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});  
             $open_elements->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } else {  
             $in_body->($insert_to_current);  
             redo B;  
           }  
         } elsif ($insertion_mode eq 'in table') {  
           if ($token->{type} eq 'character') {  
             ## NOTE: There are "character in table" code clones.  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $open_elements->[-1]->[0]->manakai_append_text ($1);  
                 
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
3476                }                }
3477              }                !!!insert-element ($token->{tag_name}, $token->{attributes});
3478                  my $meta_el = pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
3479    
3480              ## As if in body, but insert into foster parent element                unless ($self->{confident}) {
3481              ## ISSUE: Spec says that "whenever a node would be inserted                  if ($token->{attributes}->{charset}) { ## TODO: And if supported
3482              ## into the current node" while characters might not be                    !!!cp ('t106');
3483              ## result in a new Text node.                    $self->{change_encoding}
3484              $reconstruct_active_formatting_elements->($insert_to_foster);                        ->($self, $token->{attributes}->{charset}->{value});
3485                                  
3486              if ({                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
3487                   table => 1, tbody => 1, tfoot => 1,                        ->set_user_data (manakai_has_reference =>
3488                   thead => 1, tr => 1,                                             $token->{attributes}->{charset}
3489                  }->{$open_elements->[-1]->[1]}) {                                                 ->{has_reference});
3490                # MUST                  } elsif ($token->{attributes}->{content}) {
3491                my $foster_parent_element;                    ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.
3492                my $next_sibling;                    if ($token->{attributes}->{content}->{value}
3493                my $prev_sibling;                        =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
3494                OE: for (reverse 0..$#$open_elements) {                            [\x09-\x0D\x20]*=
3495                  if ($open_elements->[$_]->[1] eq 'table') {                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
3496                    my $parent = $open_elements->[$_]->[0]->parent_node;                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {
3497                    if (defined $parent and $parent->node_type == 1) {                      !!!cp ('t107');
3498                      $foster_parent_element = $parent;                      $self->{change_encoding}
3499                      $next_sibling = $open_elements->[$_]->[0];                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);
3500                      $prev_sibling = $next_sibling->previous_sibling;                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')
3501                            ->set_user_data (manakai_has_reference =>
3502                                                 $token->{attributes}->{content}
3503                                                       ->{has_reference});
3504                    } else {                    } else {
3505                      $foster_parent_element = $open_elements->[$_ - 1]->[0];                      !!!cp ('t108');
                     $prev_sibling = $foster_parent_element->last_child;  
3506                    }                    }
                   last OE;  
3507                  }                  }
               } # OE  
               $foster_parent_element = $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});  
3508                } else {                } else {
3509                  $foster_parent_element->insert_before                  if ($token->{attributes}->{charset}) {
3510                    ($self->{document}->create_text_node ($token->{data}),                    !!!cp ('t109');
3511                     $next_sibling);                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
3512                }                        ->set_user_data (manakai_has_reference =>
3513              } else {                                             $token->{attributes}->{charset}
3514                $open_elements->[-1]->[0]->manakai_append_text ($token->{data});                                                 ->{has_reference});
3515              }                  }
3516                                if ($token->{attributes}->{content}) {
3517              !!!next-token;                    !!!cp ('t110');
3518              redo B;                    $meta_el->[0]->get_attribute_node_ns (undef, 'content')
3519            } elsif ($token->{type} eq 'comment') {                        ->set_user_data (manakai_has_reference =>
3520              my $comment = $self->{document}->create_comment ($token->{data});                                             $token->{attributes}->{content}
3521              $open_elements->[-1]->[0]->append_child ($comment);                                                 ->{has_reference});
3522              !!!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 ($open_elements->[-1]->[1] ne 'table' and  
                      $open_elements->[-1]->[1] ne 'html') {  
                 !!!parse-error;  
                 pop @$open_elements;  
3523                }                }
3524    
3525                push @$active_formatting_elements, ['#marker', '']                pop @{$self->{open_elements}} # <head>
3526                  if $token->{tag_name} eq 'caption';                    if $self->{insertion_mode} == AFTER_HEAD_IM;
   
               !!!insert-element ($token->{tag_name}, $token->{attributes});  
               $insertion_mode = {  
                                  caption => 'in caption',  
                                  colgroup => 'in column group',  
                                  tbody => 'in table body',  
                                  tfoot => 'in table body',  
                                  thead => 'in table body',  
                                 }->{$token->{tag_name}};  
3527                !!!next-token;                !!!next-token;
3528                redo B;                redo B;
3529              } elsif ({              } elsif ($token->{tag_name} eq 'title') {
3530                        col => 1,                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3531                        td => 1, th => 1, tr => 1,                  !!!cp ('t111');
3532                       }->{$token->{tag_name}}) {                  ## As if </noscript>
3533                ## Clear back to table context                  pop @{$self->{open_elements}};
3534                while ($open_elements->[-1]->[1] ne 'table' and                  !!!parse-error (type => 'in noscript:title');
3535                       $open_elements->[-1]->[1] ne 'html') {                
3536                  !!!parse-error;                  $self->{insertion_mode} = IN_HEAD_IM;
3537                  pop @$open_elements;                  ## Reprocess in the "in head" insertion mode...
3538                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3539                    !!!cp ('t112');
3540                    !!!parse-error (type => 'after head:'.$token->{tag_name});
3541                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3542                  } else {
3543                    !!!cp ('t113');
3544                }                }
3545    
3546                !!!insert-element ($token->{tag_name} eq 'col' ? 'colgroup' : 'tbody');                ## NOTE: There is a "as if in head" code clone.
3547                $insertion_mode = $token->{tag_name} eq 'col'                my $parent = defined $self->{head_element} ? $self->{head_element}
3548                  ? 'in column group' : 'in table body';                    : $self->{open_elements}->[-1]->[0];
3549                ## reprocess                $parse_rcdata->(RCDATA_CONTENT_MODEL);
3550                  pop @{$self->{open_elements}} # <head>
3551                      if $self->{insertion_mode} == AFTER_HEAD_IM;
3552                redo B;                redo B;
3553              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'style') {
3554                ## NOTE: There are code clones for this "table in table"                ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and
3555                !!!parse-error;                ## insertion mode IN_HEAD_IM)
3556                  ## NOTE: There is a "as if in head" code clone.
3557                ## As if </table>                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3558                ## have a table element in table scope                  !!!cp ('t114');
3559                my $i;                  !!!parse-error (type => 'after head:'.$token->{tag_name});
3560                INSCOPE: for (reverse 0..$#$open_elements) {                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3561                  my $node = $open_elements->[$_];                } else {
3562                  if ($node->[1] eq 'table') {                  !!!cp ('t115');
3563                    $i = $_;                }
3564                    last INSCOPE;                $parse_rcdata->(CDATA_CONTENT_MODEL);
3565                  } elsif ({                pop @{$self->{open_elements}} # <head>
3566                            table => 1, html => 1,                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3567                           }->{$node->[1]}) {                redo B;
3568                    last INSCOPE;              } elsif ($token->{tag_name} eq 'noscript') {
3569                  }                if ($self->{insertion_mode} == IN_HEAD_IM) {
3570                } # INSCOPE                  !!!cp ('t116');
3571                unless (defined $i) {                  ## NOTE: and scripting is disalbed
3572                  !!!parse-error;                  !!!insert-element ($token->{tag_name}, $token->{attributes});
3573                  ## Ignore tokens </table><table>                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;
3574                    !!!next-token;
3575                    redo B;
3576                  } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3577                    !!!cp ('t117');
3578                    !!!parse-error (type => 'in noscript:noscript');
3579                    ## Ignore the token
3580                  !!!next-token;                  !!!next-token;
3581                  redo B;                  redo B;
3582                  } else {
3583                    !!!cp ('t118');
3584                    #
3585                }                }
3586                } elsif ($token->{tag_name} eq 'script') {
3587                  if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3588                    !!!cp ('t119');
3589                    ## As if </noscript>
3590                    pop @{$self->{open_elements}};
3591                    !!!parse-error (type => 'in noscript:script');
3592                                
3593                ## generate implied end tags                  $self->{insertion_mode} = IN_HEAD_IM;
3594                if ({                  ## Reprocess in the "in head" insertion mode...
3595                     dd => 1, dt => 1, li => 1, p => 1,                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3596                     td => 1, th => 1, tr => 1,                  !!!cp ('t120');
3597                    }->{$open_elements->[-1]->[1]}) {                  !!!parse-error (type => 'after head:'.$token->{tag_name});
3598                  !!!back-token; # <table>                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3599                  $token = {type => 'end tag', tag_name => 'table'};                } else {
3600                  !!!back-token;                  !!!cp ('t121');
                 $token = {type => 'end tag',  
                           tag_name => $open_elements->[-1]->[1]}; # MUST  
                 redo B;  
3601                }                }
3602    
3603                if ($open_elements->[-1]->[1] ne 'table') {                ## NOTE: There is a "as if in head" code clone.
3604                  !!!parse-error;                $script_start_tag->();
3605                  pop @{$self->{open_elements}} # <head>
3606                      if $self->{insertion_mode} == AFTER_HEAD_IM;
3607                  redo B;
3608                } elsif ($token->{tag_name} eq 'body' or
3609                         $token->{tag_name} eq 'frameset') {
3610                  if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3611                    !!!cp ('t122');
3612                    ## As if </noscript>
3613                    pop @{$self->{open_elements}};
3614                    !!!parse-error (type => 'in noscript:'.$token->{tag_name});
3615                    
3616                    ## Reprocess in the "in head" insertion mode...
3617                    ## As if </head>
3618                    pop @{$self->{open_elements}};
3619                    
3620                    ## Reprocess in the "after head" insertion mode...
3621                  } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3622                    !!!cp ('t124');
3623                    pop @{$self->{open_elements}};
3624                    
3625                    ## Reprocess in the "after head" insertion mode...
3626                  } else {
3627                    !!!cp ('t125');
3628                }                }
3629    
3630                splice @$open_elements, $i;                ## "after head" insertion mode
3631                  !!!insert-element ($token->{tag_name}, $token->{attributes});
3632                $reset_insertion_mode->();                              if ($token->{tag_name} eq 'body') {
3633                    !!!cp ('t126');
3634                ## reprocess                  $self->{insertion_mode} = IN_BODY_IM;
3635                  } elsif ($token->{tag_name} eq 'frameset') {
3636                    !!!cp ('t127');
3637                    $self->{insertion_mode} = IN_FRAMESET_IM;
3638                  } else {
3639                    die "$0: tag name: $self->{tag_name}";
3640                  }
3641                  !!!next-token;
3642                redo B;                redo B;
3643              } else {              } else {
3644                  !!!cp ('t128');
3645                #                #
3646              }              }
3647            } elsif ($token->{type} eq 'end tag') {  
3648              if ($token->{tag_name} eq 'table') {              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3649                ## have a table element in table scope                !!!cp ('t129');
3650                my $i;                ## As if </noscript>
3651                INSCOPE: for (reverse 0..$#$open_elements) {                pop @{$self->{open_elements}};
3652                  my $node = $open_elements->[$_];                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});
3653                  if ($node->[1] eq $token->{tag_name}) {                
3654                    $i = $_;                ## Reprocess in the "in head" insertion mode...
3655                    last INSCOPE;                ## As if </head>
3656                  } elsif ({                pop @{$self->{open_elements}};
3657                            table => 1, html => 1,  
3658                           }->{$node->[1]}) {                ## Reprocess in the "after head" insertion mode...
3659                    last INSCOPE;              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3660                  }                !!!cp ('t130');
3661                } # INSCOPE                ## As if </head>
3662                unless (defined $i) {                pop @{$self->{open_elements}};
3663                  !!!parse-error;  
3664                  ## Ignore the token                ## Reprocess in the "after head" insertion mode...
3665                } else {
3666                  !!!cp ('t131');
3667                }
3668    
3669                ## "after head" insertion mode
3670                ## As if <body>
3671                !!!insert-element ('body');
3672                $self->{insertion_mode} = IN_BODY_IM;
3673                ## reprocess
3674                redo B;
3675              } elsif ($token->{type} == END_TAG_TOKEN) {
3676                if ($token->{tag_name} eq 'head') {
3677                  if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3678                    !!!cp ('t132');
3679                    ## As if <head>
3680                    !!!create-element ($self->{head_element}, 'head');
3681                    $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3682                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3683    
3684                    ## Reprocess in the "in head" insertion mode...
3685                    pop @{$self->{open_elements}};
3686                    $self->{insertion_mode} = AFTER_HEAD_IM;
3687                    !!!next-token;
3688                    redo B;
3689                  } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3690                    !!!cp ('t133');
3691                    ## As if </noscript>
3692                    pop @{$self->{open_elements}};
3693                    !!!parse-error (type => 'in noscript:/head');
3694                    
3695                    ## Reprocess in the "in head" insertion mode...
3696                    pop @{$self->{open_elements}};
3697                    $self->{insertion_mode} = AFTER_HEAD_IM;
3698                    !!!next-token;
3699                    redo B;
3700                  } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3701                    !!!cp ('t134');
3702                    pop @{$self->{open_elements}};
3703                    $self->{insertion_mode} = AFTER_HEAD_IM;
3704                    !!!next-token;
3705                    redo B;
3706                  } else {
3707                    !!!cp ('t135');
3708                    #
3709                  }
3710                } elsif ($token->{tag_name} eq 'noscript') {
3711                  if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3712                    !!!cp ('t136');
3713                    pop @{$self->{open_elements}};
3714                    $self->{insertion_mode} = IN_HEAD_IM;
3715                  !!!next-token;                  !!!next-token;
3716                  redo B;                  redo B;
3717                  } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3718                    !!!cp ('t137');
3719                    !!!parse-error (type => 'unmatched end tag:noscript');
3720                    ## Ignore the token ## ISSUE: An issue in the spec.
3721                    !!!next-token;
3722                    redo B;
3723                  } else {
3724                    !!!cp ('t138');
3725                    #
3726                }                }
3727                              } elsif ({
3728                ## generate implied end tags                        body => 1, html => 1,
3729                if ({                       }->{$token->{tag_name}}) {
3730                     dd => 1, dt => 1, li => 1, p => 1,                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3731                     td => 1, th => 1, tr => 1,                  !!!cp ('t139');
3732                    }->{$open_elements->[-1]->[1]}) {                  ## As if <head>
3733                  !!!back-token;                  !!!create-element ($self->{head_element}, 'head');
3734                  $token = {type => 'end tag',                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3735                            tag_name => $open_elements->[-1]->[1]}; # MUST                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3736    
3737                    $self->{insertion_mode} = IN_HEAD_IM;
3738                    ## Reprocess in the "in head" insertion mode...
3739                  } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3740                    !!!cp ('t140');
3741                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3742                    ## Ignore the token
3743                    !!!next-token;
3744                  redo B;                  redo B;
3745                  } else {
3746                    !!!cp ('t141');
3747                }                }
3748                  
3749                  #
3750                } elsif ({
3751                          p => 1, br => 1,
3752                         }->{$token->{tag_name}}) {
3753                  if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3754                    !!!cp ('t142');
3755                    ## As if <head>
3756                    !!!create-element ($self->{head_element}, 'head');
3757                    $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3758                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3759    
3760                if ($open_elements->[-1]->[1] ne 'table') {                  $self->{insertion_mode} = IN_HEAD_IM;
3761                  !!!parse-error;                  ## Reprocess in the "in head" insertion mode...
3762                  } else {
3763                    !!!cp ('t143');
3764                }                }
3765    
3766                splice @$open_elements, $i;                #
3767                } else {
3768                $reset_insertion_mode->();                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3769                    !!!cp ('t144');
3770                    #
3771                  } else {
3772                    !!!cp ('t145');
3773                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3774                    ## Ignore the token
3775                    !!!next-token;
3776                    redo B;
3777                  }
3778                }
3779    
3780                !!!next-token;              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3781                redo B;                !!!cp ('t146');
3782              } elsif ({                ## As if </noscript>
3783                        body => 1, caption => 1, col => 1, colgroup => 1,                pop @{$self->{open_elements}};
3784                        html => 1, tbody => 1, td => 1, tfoot => 1, th => 1,                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});
3785                        thead => 1, tr => 1,                
3786                       }->{$token->{tag_name}}) {                ## Reprocess in the "in head" insertion mode...
3787                !!!parse-error;                ## As if </head>
3788                ## Ignore the token                pop @{$self->{open_elements}};
3789    
3790                  ## Reprocess in the "after head" insertion mode...
3791                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3792                  !!!cp ('t147');
3793                  ## As if </head>
3794                  pop @{$self->{open_elements}};
3795    
3796                  ## Reprocess in the "after head" insertion mode...
3797                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3798    ## ISSUE: This case cannot be reached?
3799                  !!!cp ('t148');
3800                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3801                  ## Ignore the token ## ISSUE: An issue in the spec.
3802                !!!next-token;                !!!next-token;
3803                redo B;                redo B;
3804              } else {              } else {
3805                #                !!!cp ('t149');
3806              }              }
           } else {  
             #  
           }  
3807    
3808            !!!parse-error;              ## "after head" insertion mode
3809            $in_body->($insert_to_foster);              ## As if <body>
3810            redo B;              !!!insert-element ('body');
3811          } elsif ($insertion_mode eq 'in caption') {              $self->{insertion_mode} = IN_BODY_IM;
3812            if ($token->{type} eq 'character') {              ## reprocess
3813              ## NOTE: This is a code clone of "character in body".              redo B;
3814          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
3815            if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3816              !!!cp ('t149.1');
3817    
3818              ## NOTE: As if <head>
3819              !!!create-element ($self->{head_element}, 'head');
3820              $self->{open_elements}->[-1]->[0]->append_child
3821                  ($self->{head_element});
3822              #push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3823              #$self->{insertion_mode} = IN_HEAD_IM;
3824              ## NOTE: Reprocess.
3825    
3826              ## NOTE: As if </head>
3827              #pop @{$self->{open_elements}};
3828              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
3829              ## NOTE: Reprocess.
3830              
3831              #
3832            } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3833              !!!cp ('t149.2');
3834    
3835              ## NOTE: As if </head>
3836              pop @{$self->{open_elements}};
3837              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
3838              ## NOTE: Reprocess.
3839    
3840              #
3841            } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3842              !!!cp ('t149.3');
3843    
3844              !!!parse-error (type => 'in noscript:#eof');
3845    
3846              ## As if </noscript>
3847              pop @{$self->{open_elements}};
3848              #$self->{insertion_mode} = IN_HEAD_IM;
3849              ## NOTE: Reprocess.
3850    
3851              ## NOTE: As if </head>
3852              pop @{$self->{open_elements}};
3853              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
3854              ## NOTE: Reprocess.
3855    
3856              #
3857            } else {
3858              !!!cp ('t149.4');
3859              #
3860            }
3861    
3862            ## NOTE: As if <body>
3863            !!!insert-element ('body');
3864            $self->{insertion_mode} = IN_BODY_IM;
3865            ## NOTE: Reprocess.
3866            redo B;
3867          } else {
3868            die "$0: $token->{type}: Unknown token type";
3869          }
3870    
3871              ## ISSUE: An issue in the spec.
3872        } elsif ($self->{insertion_mode} & BODY_IMS) {
3873              if ($token->{type} == CHARACTER_TOKEN) {
3874                !!!cp ('t150');
3875                ## NOTE: There is a code clone of "character in body".
3876              $reconstruct_active_formatting_elements->($insert_to_current);              $reconstruct_active_formatting_elements->($insert_to_current);
3877                            
3878              $open_elements->[-1]->[0]->manakai_append_text ($token->{data});              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
3879    
3880              !!!next-token;              !!!next-token;
3881              redo B;              redo B;
3882            } 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});  
             $open_elements->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
3883              if ({              if ({
3884                   caption => 1, col => 1, colgroup => 1, tbody => 1,                   caption => 1, col => 1, colgroup => 1, tbody => 1,
3885                   td => 1, tfoot => 1, th => 1, thead => 1, tr => 1,                   td => 1, tfoot => 1, th => 1, thead => 1, tr => 1,
3886                  }->{$token->{tag_name}}) {                  }->{$token->{tag_name}}) {
3887                !!!parse-error;                if ($self->{insertion_mode} == IN_CELL_IM) {
3888                    ## have an element in table scope
3889                    my $tn;
3890                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3891                      my $node = $self->{open_elements}->[$_];
3892                      if ($node->[1] eq 'td' or $node->[1] eq 'th') {
3893                        !!!cp ('t151');
3894                        $tn = $node->[1];
3895                        last INSCOPE;
3896                      } elsif ({
3897                                table => 1, html => 1,
3898                               }->{$node->[1]}) {
3899                        !!!cp ('t152');
3900                        last INSCOPE;
3901                      }
3902                    } # INSCOPE
3903                      unless (defined $tn) {
3904                        !!!cp ('t153');
3905    ## TODO: This error type is wrong.
3906                        !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3907                        ## Ignore the token
3908                        !!!next-token;
3909                        redo B;
3910                      }
3911                    
3912                    !!!cp ('t154');
3913                    ## Close the cell
3914                    !!!back-token; # <?>
3915                    $token = {type => END_TAG_TOKEN, tag_name => $tn};
3916                    redo B;
3917                  } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
3918                    !!!parse-error (type => 'not closed:caption');
3919                    
3920                    ## As if </caption>
3921                    ## have a table element in table scope
3922                    my $i;
3923                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3924                      my $node = $self->{open_elements}->[$_];
3925                      if ($node->[1] eq 'caption') {
3926                        !!!cp ('t155');
3927                        $i = $_;
3928                        last INSCOPE;
3929                      } elsif ({
3930                                table => 1, html => 1,
3931                               }->{$node->[1]}) {
3932                        !!!cp ('t156');
3933                        last INSCOPE;
3934                      }
3935                    } # INSCOPE
3936                      unless (defined $i) {
3937                        !!!cp ('t157');
3938    ## TODO: this type is wrong.
3939                        !!!parse-error (type => 'unmatched end tag:caption');
3940                        ## Ignore the token
3941                        !!!next-token;
3942                        redo B;
3943                      }
3944                    
3945                    ## generate implied end tags
3946                    while ({
3947                            dd => 1, dt => 1, li => 1, p => 1,
3948                           }->{$self->{open_elements}->[-1]->[1]}) {
3949                      !!!cp ('t158');
3950                      pop @{$self->{open_elements}};
3951                    }
3952    
3953                ## As if </caption>                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {
3954                ## have a table element in table scope                    !!!cp ('t159');
3955                my $i;                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3956                INSCOPE: for (reverse 0..$#$open_elements) {                  } else {
3957                  my $node = $open_elements->[$_];                    !!!cp ('t160');
                 if ($node->[1] eq 'caption') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
3958                  }                  }
3959                } # INSCOPE                  
3960                unless (defined $i) {                  splice @{$self->{open_elements}}, $i;
3961                  !!!parse-error;                  
3962                    $clear_up_to_marker->();
3963                    
3964                    $self->{insertion_mode} = IN_TABLE_IM;
3965                    
3966                    ## reprocess
3967                    redo B;
3968                  } else {
3969                    !!!cp ('t161');
3970                    #
3971                  }
3972                } else {
3973                  !!!cp ('t162');
3974                  #
3975                }
3976              } elsif ($token->{type} == END_TAG_TOKEN) {
3977                if ($token->{tag_name} eq 'td' or $token->{tag_name} eq 'th') {
3978                  if ($self->{insertion_mode} == IN_CELL_IM) {
3979                    ## have an element in table scope
3980                    my $i;
3981                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3982                      my $node = $self->{open_elements}->[$_];
3983                      if ($node->[1] eq $token->{tag_name}) {
3984                        !!!cp ('t163');
3985                        $i = $_;
3986                        last INSCOPE;
3987                      } elsif ({
3988                                table => 1, html => 1,
3989                               }->{$node->[1]}) {
3990                        !!!cp ('t164');
3991                        last INSCOPE;
3992                      }
3993                    } # INSCOPE
3994                      unless (defined $i) {
3995                        !!!cp ('t165');
3996                        !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3997                        ## Ignore the token
3998                        !!!next-token;
3999                        redo B;
4000                      }
4001                    
4002                    ## generate implied end tags
4003                    while ({
4004                            dd => 1, dt => 1, li => 1, p => 1,
4005                           }->{$self->{open_elements}->[-1]->[1]}) {
4006                      !!!cp ('t166');
4007                      pop @{$self->{open_elements}};
4008                    }
4009    
4010                    if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
4011                      !!!cp ('t167');
4012                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4013                    } else {
4014                      !!!cp ('t168');
4015                    }
4016                    
4017                    splice @{$self->{open_elements}}, $i;
4018                    
4019                    $clear_up_to_marker->();
4020                    
4021                    $self->{insertion_mode} = IN_ROW_IM;
4022                    
4023                    !!!next-token;
4024                    redo B;
4025                  } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
4026                    !!!cp ('t169');
4027                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4028                  ## Ignore the token                  ## Ignore the token
4029                  !!!next-token;                  !!!next-token;
4030                  redo B;                  redo B;
4031                  } else {
4032                    !!!cp ('t170');
4033                    #
4034                }                }
4035                              } elsif ($token->{tag_name} eq 'caption') {
4036                ## generate implied end tags                if ($self->{insertion_mode} == IN_CAPTION_IM) {
4037                if ({                  ## have a table element in table scope
4038                     dd => 1, dt => 1, li => 1, p => 1,                  my $i;
4039                     td => 1, th => 1, tr => 1,                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4040                    }->{$open_elements->[-1]->[1]}) {                    my $node = $self->{open_elements}->[$_];
4041                  !!!back-token; # <?>                    if ($node->[1] eq $token->{tag_name}) {
4042                  $token = {type => 'end tag', tag_name => 'caption'};                      !!!cp ('t171');
4043                  !!!back-token;                      $i = $_;
4044                  $token = {type => 'end tag',                      last INSCOPE;
4045                            tag_name => $open_elements->[-1]->[1]}; # MUST                    } elsif ({
4046                                table => 1, html => 1,
4047                               }->{$node->[1]}) {
4048                        !!!cp ('t172');
4049                        last INSCOPE;
4050                      }
4051                    } # INSCOPE
4052                      unless (defined $i) {
4053                        !!!cp ('t173');
4054                        !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4055                        ## Ignore the token
4056                        !!!next-token;
4057                        redo B;
4058                      }
4059                    
4060                    ## generate implied end tags
4061                    while ({
4062                            dd => 1, dt => 1, li => 1, p => 1,
4063                           }->{$self->{open_elements}->[-1]->[1]}) {
4064                      !!!cp ('t174');
4065                      pop @{$self->{open_elements}};
4066                    }
4067                    
4068                    if ($self->{open_elements}->[-1]->[1] ne 'caption') {
4069                      !!!cp ('t175');
4070                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4071                    } else {
4072                      !!!cp ('t176');
4073                    }
4074                    
4075                    splice @{$self->{open_elements}}, $i;
4076                    
4077                    $clear_up_to_marker->();
4078                    
4079                    $self->{insertion_mode} = IN_TABLE_IM;
4080                    
4081                    !!!next-token;
4082                  redo B;                  redo B;
4083                  } elsif ($self->{insertion_mode} == IN_CELL_IM) {
4084                    !!!cp ('t177');
4085                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4086                    ## Ignore the token
4087                    !!!next-token;
4088                    redo B;
4089                  } else {
4090                    !!!cp ('t178');
4091                    #
4092                }                }
4093                } elsif ({
4094                if ($open_elements->[-1]->[1] ne 'caption') {                        table => 1, tbody => 1, tfoot => 1,
4095                  !!!parse-error;                        thead => 1, tr => 1,
4096                }                       }->{$token->{tag_name}} and
4097                         $self->{insertion_mode} == IN_CELL_IM) {
4098                splice @$open_elements, $i;                ## have an element in table scope
   
               $clear_up_to_marker->();  
   
               $insertion_mode = 'in table';  
   
               ## reprocess  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'caption') {  
               ## have a table element in table scope  
4099                my $i;                my $i;
4100                INSCOPE: for (reverse 0..$#$open_elements) {                my $tn;
4101                  my $node = $open_elements->[$_];                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4102                    my $node = $self->{open_elements}->[$_];
4103                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
4104                      !!!cp ('t179');
4105                    $i = $_;                    $i = $_;
4106                    last INSCOPE;                    last INSCOPE;
4107                    } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {
4108                      !!!cp ('t180');
4109                      $tn = $node->[1];
4110                      ## NOTE: There is exactly one |td| or |th| element
4111                      ## in scope in the stack of open elements by definition.
4112                  } elsif ({                  } elsif ({
4113                            table => 1, html => 1,                            table => 1, html => 1,
4114                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4115                      !!!cp ('t181');
4116                    last INSCOPE;                    last INSCOPE;
4117                  }                  }
4118                } # INSCOPE                } # INSCOPE
4119                unless (defined $i) {                unless (defined $i) {
4120                  !!!parse-error;                  !!!cp ('t182');
4121                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4122                  ## Ignore the token                  ## Ignore the token
4123                  !!!next-token;                  !!!next-token;
4124                  redo B;                  redo B;
4125                  } else {
4126                    !!!cp ('t183');
4127                }                }
                 
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                   }->{$open_elements->[-1]->[1]}) {  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $open_elements->[-1]->[1]}; # MUST  
                 redo B;  
               }  
   
               if ($open_elements->[-1]->[1] ne 'caption') {  
                 !!!parse-error;  
               }  
   
               splice @$open_elements, $i;  
4128    
4129                $clear_up_to_marker->();                ## Close the cell
4130                  !!!back-token; # </?>
4131                $insertion_mode = 'in table';                $token = {type => END_TAG_TOKEN, tag_name => $tn};
   
               !!!next-token;  
4132                redo B;                redo B;
4133              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table' and
4134                !!!parse-error;                       $self->{insertion_mode} == IN_CAPTION_IM) {
4135                  !!!parse-error (type => 'not closed:caption');
4136    
4137                ## As if </caption>                ## As if </caption>
4138                ## have a table element in table scope                ## have a table element in table scope
4139                my $i;                my $i;
4140                INSCOPE: for (reverse 0..$#$open_elements) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4141                  my $node = $open_elements->[$_];                  my $node = $self->{open_elements}->[$_];
4142                  if ($node->[1] eq 'caption') {                  if ($node->[1] eq 'caption') {
4143                      !!!cp ('t184');
4144                    $i = $_;                    $i = $_;
4145                    last INSCOPE;                    last INSCOPE;
4146                  } elsif ({                  } elsif ({
4147                            table => 1, html => 1,                            table => 1, html => 1,
4148                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4149                      !!!cp ('t185');
4150                    last INSCOPE;                    last INSCOPE;
4151                  }                  }
4152                } # INSCOPE                } # INSCOPE
4153                unless (defined $i) {                unless (defined $i) {
4154                  !!!parse-error;                  !!!cp ('t186');
4155                    !!!parse-error (type => 'unmatched end tag:caption');
4156                  ## Ignore the token                  ## Ignore the token
4157                  !!!next-token;                  !!!next-token;
4158                  redo B;                  redo B;
4159                }                }
4160                                
4161                ## generate implied end tags                ## generate implied end tags
4162                if ({                while ({
4163                     dd => 1, dt => 1, li => 1, p => 1,                        dd => 1, dt => 1, li => 1, p => 1,
4164                     td => 1, th => 1, tr => 1,                       }->{$self->{open_elements}->[-1]->[1]}) {
4165                    }->{$open_elements->[-1]->[1]}) {                  !!!cp ('t187');
4166                  !!!back-token; # </table>                  pop @{$self->{open_elements}};
                 $token = {type => 'end tag', tag_name => 'caption'};  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $open_elements->[-1]->[1]}; # MUST  
                 redo B;  
4167                }                }
4168    
4169                if ($open_elements->[-1]->[1] ne 'caption') {                if ($self->{open_elements}->[-1]->[1] ne 'caption') {
4170                  !!!parse-error;                  !!!cp ('t188');
4171                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4172                  } else {
4173                    !!!cp ('t189');
4174                }                }
4175    
4176                splice @$open_elements, $i;                splice @{$self->{open_elements}}, $i;
4177    
4178                $clear_up_to_marker->();                $clear_up_to_marker->();
4179    
4180                $insertion_mode = 'in table';                $self->{insertion_mode} = IN_TABLE_IM;
4181    
4182                ## reprocess                ## reprocess
4183                redo B;                redo B;
4184              } elsif ({              } elsif ({
4185                        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,  
4186                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4187                !!!parse-error;                if ($self->{insertion_mode} & BODY_TABLE_IMS) {
4188                ## Ignore the token                  !!!cp ('t190');
4189                redo B;                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
             } else {  
               #  
             }  
           } else {  
             #  
           }  
                 
           $in_body->($insert_to_current);  
           redo B;  
         } elsif ($insertion_mode eq 'in column group') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $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});  
             $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 @$open_elements;  
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'colgroup') {  
               if ($open_elements->[-1]->[1] eq 'html') {  
                 !!!parse-error;  
4190                  ## Ignore the token                  ## Ignore the token
4191                  !!!next-token;                  !!!next-token;
4192                  redo B;                  redo B;
4193                } else {                } else {
4194                  pop @$open_elements; # colgroup                  !!!cp ('t191');
4195                  $insertion_mode = 'in table';                  #
                 !!!next-token;  
                 redo B;              
4196                }                }
4197              } elsif ($token->{tag_name} eq 'col') {              } elsif ({
4198                !!!parse-error;                        tbody => 1, tfoot => 1,
4199                          thead => 1, tr => 1,
4200                         }->{$token->{tag_name}} and
4201                         $self->{insertion_mode} == IN_CAPTION_IM) {
4202                  !!!cp ('t192');
4203                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4204                ## Ignore the token                ## Ignore the token
4205                !!!next-token;                !!!next-token;
4206                redo B;                redo B;
4207              } else {              } else {
4208                #                !!!cp ('t193');
4209                  #
4210              }              }
4211            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4212              #          for my $entry (@{$self->{open_elements}}) {
4213              if (not {
4214                dd => 1, dt => 1, li => 1, p => 1, tbody => 1, td => 1, tfoot => 1,
4215                th => 1, thead => 1, tr => 1, body => 1, html => 1,
4216              }->{$entry->[1]}) {
4217                !!!cp ('t75');
4218                !!!parse-error (type => 'in body:#eof');
4219                last;
4220            }            }
4221            }
4222    
4223            ## As if </colgroup>          ## Stop parsing.
4224            if ($open_elements->[-1]->[1] eq 'html') {          last B;
4225              !!!parse-error;        } else {
4226              ## Ignore the token          die "$0: $token->{type}: Unknown token type";
4227          }
4228    
4229          $insert = $insert_to_current;
4230          #
4231        } elsif ($self->{insertion_mode} & TABLE_IMS) {
4232          if ($token->{type} == CHARACTER_TOKEN) {
4233            if (not $open_tables->[-1]->[1] and # tainted
4234                $token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4235              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4236                  
4237              unless (length $token->{data}) {
4238                !!!cp ('t194');
4239              !!!next-token;              !!!next-token;
4240              redo B;              redo B;
4241            } else {            } else {
4242              pop @$open_elements; # colgroup              !!!cp ('t195');
             $insertion_mode = 'in table';  
             ## reprocess  
             redo B;  
4243            }            }
4244          } elsif ($insertion_mode eq 'in table body') {          }
4245            if ($token->{type} eq 'character') {  
4246              ## NOTE: This is a "character in table" code clone.              !!!parse-error (type => 'in table:#character');
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $open_elements->[-1]->[0]->manakai_append_text ($1);  
                 
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
4247    
4248              ## As if in body, but insert into foster parent element              ## As if in body, but insert into foster parent element
4249              ## ISSUE: Spec says that "whenever a node would be inserted              ## ISSUE: Spec says that "whenever a node would be inserted
4250              ## into the current node" while characters might not be              ## into the current node" while characters might not be
4251              ## result in a new Text node.              ## result in a new Text node.
4252              $reconstruct_active_formatting_elements->($insert_to_foster);              $reconstruct_active_formatting_elements->($insert_to_foster);
4253                
4254              if ({              if ({
4255                   table => 1, tbody => 1, tfoot => 1,                   table => 1, tbody => 1, tfoot => 1,
4256                   thead => 1, tr => 1,                   thead => 1, tr => 1,
4257                  }->{$open_elements->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4258                # MUST                # MUST
4259                my $foster_parent_element;                my $foster_parent_element;
4260                my $next_sibling;                my $next_sibling;
4261                my $prev_sibling;                my $prev_sibling;
4262                OE: for (reverse 0..$#$open_elements) {                OE: for (reverse 0..$#{$self->{open_elements}}) {
4263                  if ($open_elements->[$_]->[1] eq 'table') {                  if ($self->{open_elements}->[$_]->[1] eq 'table') {
4264                    my $parent = $open_elements->[$_]->[0]->parent_node;                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
4265                    if (defined $parent and $parent->node_type == 1) {                    if (defined $parent and $parent->node_type == 1) {
4266                        !!!cp ('t196');
4267                      $foster_parent_element = $parent;                      $foster_parent_element = $parent;
4268                      $next_sibling = $open_elements->[$_]->[0];                      $next_sibling = $self->{open_elements}->[$_]->[0];
4269                      $prev_sibling = $next_sibling->previous_sibling;                      $prev_sibling = $next_sibling->previous_sibling;
4270                    } else {                    } else {
4271                      $foster_parent_element = $open_elements->[$_ - 1]->[0];                      !!!cp ('t197');
4272                        $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];
4273                      $prev_sibling = $foster_parent_element->last_child;                      $prev_sibling = $foster_parent_element->last_child;
4274                    }                    }
4275                    last OE;                    last OE;
4276                  }                  }
4277                } # OE                } # OE
4278                $foster_parent_element = $open_elements->[0]->[0] and                $foster_parent_element = $self->{open_elements}->[0]->[0] and
4279                $prev_sibling = $foster_parent_element->last_child                $prev_sibling = $foster_parent_element->last_child
4280                  unless defined $foster_parent_element;                  unless defined $foster_parent_element;
4281                if (defined $prev_sibling and                if (defined $prev_sibling and
4282                    $prev_sibling->node_type == 3) {                    $prev_sibling->node_type == 3) {
4283                    !!!cp ('t198');
4284                  $prev_sibling->manakai_append_text ($token->{data});                  $prev_sibling->manakai_append_text ($token->{data});
4285                } else {                } else {
4286                    !!!cp ('t199');
4287                  $foster_parent_element->insert_before                  $foster_parent_element->insert_before
4288                    ($self->{document}->create_text_node ($token->{data}),                    ($self->{document}->create_text_node ($token->{data}),
4289                     $next_sibling);                     $next_sibling);
4290                }                }
4291              } else {            $open_tables->[-1]->[1] = 1; # tainted
4292                $open_elements->[-1]->[0]->manakai_append_text ($token->{data});          } else {
4293              }            !!!cp ('t200');
4294              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4295            }
4296                            
4297              !!!next-token;          !!!next-token;
4298              redo B;          redo B;
4299            } elsif ($token->{type} eq 'comment') {        } elsif ($token->{type} == START_TAG_TOKEN) {
             ## Copied from 'in table'  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $open_elements->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
4300              if ({              if ({
4301                   tr => 1,                   tr => ($self->{insertion_mode} != IN_ROW_IM),
4302                   th => 1, td => 1,                   th => 1, td => 1,
4303                  }->{$token->{tag_name}}) {                  }->{$token->{tag_name}}) {
4304                ## Clear back to table body context                if ($self->{insertion_mode} == IN_TABLE_IM) {
4305                while (not {                  ## Clear back to table context
4306                  tbody => 1, tfoot => 1, thead => 1, html => 1,                  while ($self->{open_elements}->[-1]->[1] ne 'table' and
4307                }->{$open_elements->[-1]->[1]}) {                         $self->{open_elements}->[-1]->[1] ne 'html') {
4308                  !!!parse-error;                    !!!cp ('t201');
4309                  pop @$open_elements;                    pop @{$self->{open_elements}};
               }  
                 
               $insertion_mode = 'in row';  
               if ($token->{tag_name} eq 'tr') {  
                 !!!insert-element ($token->{tag_name}, $token->{attributes});  
                 !!!next-token;  
               } else {  
                 !!!insert-element ('tr');  
                 ## reprocess  
               }  
               redo B;  
             } elsif ({  
                       caption => 1, col => 1, colgroup => 1,  
                       tbody => 1, tfoot => 1, thead => 1,  
                      }->{$token->{tag_name}}) {  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#$open_elements) {  
                 my $node = $open_elements->[$_];  
                 if ({  
                      tbody => 1, thead => 1, tfoot => 1,  
                     }->{$node->[1]}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
4310                  }                  }
4311                } # INSCOPE                  
4312                unless (defined $i) {                  !!!insert-element ('tbody');
4313                  !!!parse-error;                  $self->{insertion_mode} = IN_TABLE_BODY_IM;
4314                  ## Ignore the token                  ## reprocess in the "in table body" insertion mode...
                 !!!next-token;  
                 redo B;  
               }  
   
               ## Clear back to table body context  
               while (not {  
                 tbody => 1, tfoot => 1, thead => 1, html => 1,  
               }->{$open_elements->[-1]->[1]}) {  
                 !!!parse-error;  
                 pop @$open_elements;  
4315                }                }
4316    
4317                ## As if <{current node}>                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
4318                ## have an element in table scope                  unless ($token->{tag_name} eq 'tr') {
4319                ## true by definition                    !!!cp ('t202');
4320                      !!!parse-error (type => 'missing start tag:tr');
               ## Clear back to table body context  
               ## nop by definition  
   
               pop @$open_elements;  
               $insertion_mode = 'in table';  
               ## reprocess  
               redo B;  
             } elsif ($token->{tag_name} eq 'table') {  
               ## NOTE: This is a code clone of "table in table"  
               !!!parse-error;  
   
               ## As if </table>  
               ## have a table element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#$open_elements) {  
                 my $node = $open_elements->[$_];  
                 if ($node->[1] eq 'table') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
4321                  }                  }
4322                } # INSCOPE                  
4323                unless (defined $i) {                  ## Clear back to table body context
4324                  !!!parse-error;                  while (not {
4325                  ## Ignore tokens </table><table>                    tbody => 1, tfoot => 1, thead => 1, html => 1,
4326                  !!!next-token;                  }->{$self->{open_elements}->[-1]->[1]}) {
4327                  redo B;                    !!!cp ('t203');
4328                }                    ## ISSUE: Can this case be reached?
4329                                    pop @{$self->{open_elements}};
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                   }->{$open_elements->[-1]->[1]}) {  
                 !!!back-token; # <table>  
                 $token = {type => 'end tag', tag_name => 'table'};  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $open_elements->[-1]->[1]}; # MUST  
                 redo B;  
               }  
   
               if ($open_elements->[-1]->[1] ne 'table') {  
                 !!!parse-error;  
               }  
   
               splice @$open_elements, $i;  
   
               $reset_insertion_mode->();                
   
               ## reprocess  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ({  
                  tbody => 1, tfoot => 1, thead => 1,  
                 }->{$token->{tag_name}}) {  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#$open_elements) {  
                 my $node = $open_elements->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
4330                  }                  }
4331                } # INSCOPE                  
4332                unless (defined $i) {                  $self->{insertion_mode} = IN_ROW_IM;
4333                  !!!parse-error;                  if ($token->{tag_name} eq 'tr') {
4334                  ## Ignore the token                    !!!cp ('t204');
4335                  !!!next-token;                    !!!insert-element ($token->{tag_name}, $token->{attributes});
4336                  redo B;                    !!!next-token;
4337                }                    redo B;
4338                    } else {
4339                ## Clear back to table body context                    !!!cp ('t205');
4340                while (not {                    !!!insert-element ('tr');
4341                  tbody => 1, tfoot => 1, thead => 1, html => 1,                    ## reprocess in the "in row" insertion mode
               }->{$open_elements->[-1]->[1]}) {  
                 !!!parse-error;  
                 pop @$open_elements;  
               }  
   
               pop @$open_elements;  
               $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..$#$open_elements) {  
                 my $node = $open_elements->[$_];  
                 if ({  
                      tbody => 1, thead => 1, tfoot => 1,  
                     }->{$node->[1]}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
4342                  }                  }
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error;  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
   
               ## Clear back to table body context  
               while (not {  
                 tbody => 1, tfoot => 1, thead => 1, html => 1,  
               }->{$open_elements->[-1]->[1]}) {  
                 !!!parse-error;  
                 pop @$open_elements;  
               }  
   
               ## As if <{current node}>  
               ## have an element in table scope  
               ## true by definition  
   
               ## Clear back to table body context  
               ## nop by definition  
   
               pop @$open_elements;  
               $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;  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
           } else {  
             #  
           }  
             
           ## As if in table  
           !!!parse-error;  
           $in_body->($insert_to_foster);  
           redo B;  
         } elsif ($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]+)//) {  
               $open_elements->[-1]->[0]->manakai_append_text ($1);  
                 
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
   
             ## As if in body, but insert into foster parent element  
             ## 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);  
               
             if ({  
                  table => 1, tbody => 1, tfoot => 1,  
                  thead => 1, tr => 1,  
                 }->{$open_elements->[-1]->[1]}) {  
               # MUST  
               my $foster_parent_element;  
               my $next_sibling;  
               my $prev_sibling;  
               OE: for (reverse 0..$#$open_elements) {  
                 if ($open_elements->[$_]->[1] eq 'table') {  
                   my $parent = $open_elements->[$_]->[0]->parent_node;  
                   if (defined $parent and $parent->node_type == 1) {  
                     $foster_parent_element = $parent;  
                     $next_sibling = $open_elements->[$_]->[0];  
                     $prev_sibling = $next_sibling->previous_sibling;  
                   } else {  
                     $foster_parent_element = $open_elements->[$_ - 1]->[0];  
                     $prev_sibling = $foster_parent_element->last_child;  
                   }  
                   last OE;  
                 }  
               } # OE  
               $foster_parent_element = $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});  
4343                } else {                } else {
4344                  $foster_parent_element->insert_before                  !!!cp ('t206');
                   ($self->{document}->create_text_node ($token->{data}),  
                    $next_sibling);  
4345                }                }
4346              } else {  
               $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});  
             $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') {  
4347                ## Clear back to table row context                ## Clear back to table row context
4348                while (not {                while (not {
4349                  tr => 1, html => 1,                  tr => 1, html => 1,
4350                }->{$open_elements->[-1]->[1]}) {                }->{$self->{open_elements}->[-1]->[1]}) {
4351                  !!!parse-error;                  !!!cp ('t207');
4352                  pop @$open_elements;                  pop @{$self->{open_elements}};
4353                }                }
4354                                
4355                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes});
4356                $insertion_mode = 'in cell';                $self->{insertion_mode} = IN_CELL_IM;
4357    
4358                push @$active_formatting_elements, ['#marker', ''];                push @$active_formatting_elements, ['#marker', ''];
4359                                
# Line 3930  sub _construct_tree ($) { Line 4361  sub _construct_tree ($) {
4361                redo B;                redo B;
4362              } elsif ({              } elsif ({
4363                        caption => 1, col => 1, colgroup => 1,                        caption => 1, col => 1, colgroup => 1,
4364                        tbody => 1, tfoot => 1, thead => 1, tr => 1,                        tbody => 1, tfoot => 1, thead => 1,
4365                          tr => 1, # $self->{insertion_mode} == IN_ROW_IM
4366                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4367                ## As if </tr>                if ($self->{insertion_mode} == IN_ROW_IM) {
4368                ## have an element in table scope                  ## As if </tr>
4369                my $i;                  ## have an element in table scope
4370                INSCOPE: for (reverse 0..$#$open_elements) {                  my $i;
4371                  my $node = $open_elements->[$_];                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4372                  if ($node->[1] eq 'tr') {                    my $node = $self->{open_elements}->[$_];
4373                    $i = $_;                    if ($node->[1] eq 'tr') {
4374                    last INSCOPE;                      !!!cp ('t208');
4375                  } elsif ({                      $i = $_;
4376                            table => 1, html => 1,                      last INSCOPE;
4377                           }->{$node->[1]}) {                    } elsif ({
4378                    last INSCOPE;                              html => 1,
4379    
4380                                ## NOTE: This element does not appear here, maybe.
4381                                table => 1,
4382                               }->{$node->[1]}) {
4383                        !!!cp ('t209');
4384                        last INSCOPE;
4385                      }
4386                    } # INSCOPE
4387                    unless (defined $i) {
4388                     !!!cp ('t210');
4389    ## TODO: This type is wrong.
4390                     !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name});
4391                      ## Ignore the token
4392                      !!!next-token;
4393                      redo B;
4394                    }
4395                    
4396                    ## Clear back to table row context
4397                    while (not {
4398                      tr => 1, html => 1,
4399                    }->{$self->{open_elements}->[-1]->[1]}) {
4400                      !!!cp ('t211');
4401                      ## ISSUE: Can this case be reached?
4402                      pop @{$self->{open_elements}};
4403                    }
4404                    
4405                    pop @{$self->{open_elements}}; # tr
4406                    $self->{insertion_mode} = IN_TABLE_BODY_IM;
4407                    if ($token->{tag_name} eq 'tr') {
4408                      !!!cp ('t212');
4409                      ## reprocess
4410                      redo B;
4411                    } else {
4412                      !!!cp ('t213');
4413                      ## reprocess in the "in table body" insertion mode...
4414                  }                  }
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error;  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
4415                }                }
4416    
4417                ## Clear back to table row context                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
4418                while (not {                  ## have an element in table scope
4419                  tr => 1, html => 1,                  my $i;
4420                }->{$open_elements->[-1]->[1]}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4421                  !!!parse-error;                    my $node = $self->{open_elements}->[$_];
4422                  pop @$open_elements;                    if ({
4423                           tbody => 1, thead => 1, tfoot => 1,
4424                          }->{$node->[1]}) {
4425                        !!!cp ('t214');
4426                        $i = $_;
4427                        last INSCOPE;
4428                      } elsif ({
4429                                table => 1, html => 1,
4430                               }->{$node->[1]}) {
4431                        !!!cp ('t215');
4432                        last INSCOPE;
4433                      }
4434                    } # INSCOPE
4435                    unless (defined $i) {
4436                      !!!cp ('t216');
4437    ## TODO: This erorr type ios wrong.
4438                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4439                      ## Ignore the token
4440                      !!!next-token;
4441                      redo B;
4442                    }
4443    
4444                    ## Clear back to table body context
4445                    while (not {
4446                      tbody => 1, tfoot => 1, thead => 1, html => 1,
4447                    }->{$self->{open_elements}->[-1]->[1]}) {
4448                      !!!cp ('t217');
4449                      ## ISSUE: Can this state be reached?
4450                      pop @{$self->{open_elements}};
4451                    }
4452                    
4453                    ## As if <{current node}>
4454                    ## have an element in table scope
4455                    ## true by definition
4456                    
4457                    ## Clear back to table body context
4458                    ## nop by definition
4459                    
4460                    pop @{$self->{open_elements}};
4461                    $self->{insertion_mode} = IN_TABLE_IM;
4462                    ## reprocess in "in table" insertion mode...
4463                  } else {
4464                    !!!cp ('t218');
4465                }                }
4466    
4467                pop @$open_elements; # tr                if ($token->{tag_name} eq 'col') {
4468                $insertion_mode = 'in table body';                  ## Clear back to table context
4469                ## reprocess                  while ($self->{open_elements}->[-1]->[1] ne 'table' and
4470                redo B;                         $self->{open_elements}->[-1]->[1] ne 'html') {
4471                      !!!cp ('t219');
4472                      ## ISSUE: Can this state be reached?
4473                      pop @{$self->{open_elements}};
4474                    }
4475                    
4476                    !!!insert-element ('colgroup');
4477                    $self->{insertion_mode} = IN_COLUMN_GROUP_IM;
4478                    ## reprocess
4479                    redo B;
4480                  } elsif ({
4481                            caption => 1,
4482                            colgroup => 1,
4483                            tbody => 1, tfoot => 1, thead => 1,
4484                           }->{$token->{tag_name}}) {
4485                    ## Clear back to table context
4486                    while ($self->{open_elements}->[-1]->[1] ne 'table' and
4487                           $self->{open_elements}->[-1]->[1] ne 'html') {
4488                      !!!cp ('t220');
4489                      ## ISSUE: Can this state be reached?
4490                      pop @{$self->{open_elements}};
4491                    }
4492                    
4493                    push @$active_formatting_elements, ['#marker', '']
4494                        if $token->{tag_name} eq 'caption';
4495                    
4496                    !!!insert-element ($token->{tag_name}, $token->{attributes});
4497                    $self->{insertion_mode} = {
4498                                               caption => IN_CAPTION_IM,
4499                                               colgroup => IN_COLUMN_GROUP_IM,
4500                                               tbody => IN_TABLE_BODY_IM,
4501                                               tfoot => IN_TABLE_BODY_IM,
4502                                               thead => IN_TABLE_BODY_IM,
4503                                              }->{$token->{tag_name}};
4504                    !!!next-token;
4505                    redo B;
4506                  } else {
4507                    die "$0: in table: <>: $token->{tag_name}";
4508                  }
4509              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
4510                ## NOTE: This is a code clone of "table in table"                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
               !!!parse-error;  
4511    
4512                ## As if </table>                ## As if </table>
4513                ## have a table element in table scope                ## have a table element in table scope
4514                my $i;                my $i;
4515                INSCOPE: for (reverse 0..$#$open_elements) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4516                  my $node = $open_elements->[$_];                  my $node = $self->{open_elements}->[$_];
4517                  if ($node->[1] eq 'table') {                  if ($node->[1] eq 'table') {
4518                      !!!cp ('t221');
4519                    $i = $_;                    $i = $_;
4520                    last INSCOPE;                    last INSCOPE;
4521                  } elsif ({                  } elsif ({
4522                            table => 1, html => 1,                            #table => 1,
4523                              html => 1,
4524                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4525                      !!!cp ('t222');
4526                    last INSCOPE;                    last INSCOPE;
4527                  }                  }
4528                } # INSCOPE                } # INSCOPE
4529                unless (defined $i) {                unless (defined $i) {
4530                  !!!parse-error;                  !!!cp ('t223');
4531    ## TODO: The following is wrong, maybe.
4532                    !!!parse-error (type => 'unmatched end tag:table');
4533                  ## Ignore tokens </table><table>                  ## Ignore tokens </table><table>
4534                  !!!next-token;                  !!!next-token;
4535                  redo B;                  redo B;
4536                }                }
4537                                
4538    ## TODO: Followings are removed from the latest spec.
4539                ## generate implied end tags                ## generate implied end tags
4540                if ({                while ({
4541                     dd => 1, dt => 1, li => 1, p => 1,                        dd => 1, dt => 1, li => 1, p => 1,
4542                     td => 1, th => 1, tr => 1,                       }->{$self->{open_elements}->[-1]->[1]}) {
4543                    }->{$open_elements->[-1]->[1]}) {                  !!!cp ('t224');
4544                  !!!back-token; # <table>                  pop @{$self->{open_elements}};
                 $token = {type => 'end tag', tag_name => 'table'};  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $open_elements->[-1]->[1]}; # MUST  
                 redo B;  
4545                }                }
4546    
4547                if ($open_elements->[-1]->[1] ne 'table') {                if ($self->{open_elements}->[-1]->[1] ne 'table') {
4548                  !!!parse-error;                  !!!cp ('t225');
4549    ## ISSUE: Can this case be reached?
4550                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4551                  } else {
4552                    !!!cp ('t226');
4553                }                }
4554    
4555                splice @$open_elements, $i;                splice @{$self->{open_elements}}, $i;
4556                  pop @{$open_tables};
4557    
4558                $reset_insertion_mode->();                              $self->_reset_insertion_mode;
4559    
4560                ## reprocess                ## reprocess
4561                redo B;                redo B;
4562            } elsif ($token->{tag_name} eq 'style') {
4563              if (not $open_tables->[-1]->[1]) { # tainted
4564                !!!cp ('t227.8');
4565                ## NOTE: This is a "as if in head" code clone.
4566                $parse_rcdata->(CDATA_CONTENT_MODEL);
4567                redo B;
4568              } else {
4569                !!!cp ('t227.7');
4570                #
4571              }
4572            } elsif ($token->{tag_name} eq 'script') {
4573              if (not $open_tables->[-1]->[1]) { # tainted
4574                !!!cp ('t227.6');
4575                ## NOTE: This is a "as if in head" code clone.
4576                $script_start_tag->();
4577                redo B;
4578              } else {
4579                !!!cp ('t227.5');
4580                #
4581              }
4582            } elsif ($token->{tag_name} eq 'input') {
4583              if (not $open_tables->[-1]->[1]) { # tainted
4584                if ($token->{attributes}->{type}) { ## TODO: case
4585                  my $type = lc $token->{attributes}->{type}->{value};
4586                  if ($type eq 'hidden') {
4587                    !!!cp ('t227.3');
4588                    !!!parse-error (type => 'in table:'.$token->{tag_name});
4589    
4590                    !!!insert-element ($token->{tag_name}, $token->{attributes});
4591    
4592                    ## TODO: form element pointer
4593    
4594                    pop @{$self->{open_elements}};
4595    
4596                    !!!next-token;
4597                    redo B;
4598                  } else {
4599                    !!!cp ('t227.2');
4600                    #
4601                  }
4602              } else {              } else {
4603                  !!!cp ('t227.1');
4604                #                #
4605              }              }
4606            } elsif ($token->{type} eq 'end tag') {            } else {
4607              if ($token->{tag_name} eq 'tr') {              !!!cp ('t227.4');
4608                #
4609              }
4610            } else {
4611              !!!cp ('t227');
4612              #
4613            }
4614    
4615            !!!parse-error (type => 'in table:'.$token->{tag_name});
4616    
4617            $insert = $insert_to_foster;
4618            #
4619          } elsif ($token->{type} == END_TAG_TOKEN) {
4620                if ($token->{tag_name} eq 'tr' and
4621                    $self->{insertion_mode} == IN_ROW_IM) {
4622                ## have an element in table scope                ## have an element in table scope
4623                my $i;                my $i;
4624                INSCOPE: for (reverse 0..$#$open_elements) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4625                  my $node = $open_elements->[$_];                  my $node = $self->{open_elements}->[$_];
4626                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
4627                      !!!cp ('t228');
4628                    $i = $_;                    $i = $_;
4629                    last INSCOPE;                    last INSCOPE;
4630                  } elsif ({                  } elsif ({
4631                            table => 1, html => 1,                            table => 1, html => 1,
4632                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4633                      !!!cp ('t229');
4634                    last INSCOPE;                    last INSCOPE;
4635                  }                  }
4636                } # INSCOPE                } # INSCOPE
4637                unless (defined $i) {                unless (defined $i) {
4638                  !!!parse-error;                  !!!cp ('t230');
4639                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4640                  ## Ignore the token                  ## Ignore the token
4641                  !!!next-token;                  !!!next-token;
4642                  redo B;                  redo B;
4643                  } else {
4644                    !!!cp ('t232');
4645                }                }
4646    
4647                ## Clear back to table row context                ## Clear back to table row context
4648                while (not {                while (not {
4649                  tr => 1, html => 1,                  tr => 1, html => 1,
4650                }->{$open_elements->[-1]->[1]}) {                }->{$self->{open_elements}->[-1]->[1]}) {
4651                  !!!parse-error;                  !!!cp ('t231');
4652                  pop @$open_elements;  ## ISSUE: Can this state be reached?
4653                    pop @{$self->{open_elements}};
4654                }                }
4655    
4656                pop @$open_elements; # tr                pop @{$self->{open_elements}}; # tr
4657                $insertion_mode = 'in table body';                $self->{insertion_mode} = IN_TABLE_BODY_IM;
4658                !!!next-token;                !!!next-token;
4659                redo B;                redo B;
4660              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
4661                ## As if </tr>                if ($self->{insertion_mode} == IN_ROW_IM) {
4662                ## have an element in table scope                  ## As if </tr>
4663                    ## have an element in table scope
4664                    my $i;
4665                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4666                      my $node = $self->{open_elements}->[$_];
4667                      if ($node->[1] eq 'tr') {
4668                        !!!cp ('t233');
4669                        $i = $_;
4670                        last INSCOPE;
4671                      } elsif ({
4672                                table => 1, html => 1,
4673                               }->{$node->[1]}) {
4674                        !!!cp ('t234');
4675                        last INSCOPE;
4676                      }
4677                    } # INSCOPE
4678                    unless (defined $i) {
4679                      !!!cp ('t235');
4680    ## TODO: The following is wrong.
4681                      !!!parse-error (type => 'unmatched end tag:'.$token->{type});
4682                      ## Ignore the token
4683                      !!!next-token;
4684                      redo B;
4685                    }
4686                    
4687                    ## Clear back to table row context
4688                    while (not {
4689                      tr => 1, html => 1,
4690                    }->{$self->{open_elements}->[-1]->[1]}) {
4691                      !!!cp ('t236');
4692    ## ISSUE: Can this state be reached?
4693                      pop @{$self->{open_elements}};
4694                    }
4695                    
4696                    pop @{$self->{open_elements}}; # tr
4697                    $self->{insertion_mode} = IN_TABLE_BODY_IM;
4698                    ## reprocess in the "in table body" insertion mode...
4699                  }
4700    
4701                  if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
4702                    ## have an element in table scope
4703                    my $i;
4704                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4705                      my $node = $self->{open_elements}->[$_];
4706                      if ({
4707                           tbody => 1, thead => 1, tfoot => 1,
4708                          }->{$node->[1]}) {
4709                        !!!cp ('t237');
4710                        $i = $_;
4711                        last INSCOPE;
4712                      } elsif ({
4713                                table => 1, html => 1,
4714                               }->{$node->[1]}) {
4715                        !!!cp ('t238');
4716                        last INSCOPE;
4717                      }
4718                    } # INSCOPE
4719                    unless (defined $i) {
4720                      !!!cp ('t239');
4721                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4722                      ## Ignore the token
4723                      !!!next-token;
4724                      redo B;
4725                    }
4726                    
4727                    ## Clear back to table body context
4728                    while (not {
4729                      tbody => 1, tfoot => 1, thead => 1, html => 1,
4730                    }->{$self->{open_elements}->[-1]->[1]}) {
4731                      !!!cp ('t240');
4732                      pop @{$self->{open_elements}};
4733                    }
4734                    
4735                    ## As if <{current node}>
4736                    ## have an element in table scope
4737                    ## true by definition
4738                    
4739                    ## Clear back to table body context
4740                    ## nop by definition
4741                    
4742                    pop @{$self->{open_elements}};
4743                    $self->{insertion_mode} = IN_TABLE_IM;
4744                    ## reprocess in the "in table" insertion mode...
4745                  }
4746    
4747                  ## NOTE: </table> in the "in table" insertion mode.
4748                  ## When you edit the code fragment below, please ensure that
4749                  ## the code for <table> in the "in table" insertion mode
4750                  ## is synced with it.
4751    
4752                  ## have a table element in table scope
4753                my $i;                my $i;
4754                INSCOPE: for (reverse 0..$#$open_elements) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4755                  my $node = $open_elements->[$_];                  my $node = $self->{open_elements}->[$_];
4756                  if ($node->[1] eq 'tr') {                  if ($node->[1] eq $token->{tag_name}) {
4757                      !!!cp ('t241');
4758                    $i = $_;                    $i = $_;
4759                    last INSCOPE;                    last INSCOPE;
4760                  } elsif ({                  } elsif ({
4761                            table => 1, html => 1,                            table => 1, html => 1,
4762                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4763                      !!!cp ('t242');
4764                    last INSCOPE;                    last INSCOPE;
4765                  }                  }
4766                } # INSCOPE                } # INSCOPE
4767                unless (defined $i) {                unless (defined $i) {
4768                  !!!parse-error;                  !!!cp ('t243');
4769                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4770                  ## Ignore the token                  ## Ignore the token
4771                  !!!next-token;                  !!!next-token;
4772                  redo B;                  redo B;
4773                }                }
4774                    
4775                ## Clear back to table row context                splice @{$self->{open_elements}}, $i;
4776                while (not {                pop @{$open_tables};
4777                  tr => 1, html => 1,                
4778                }->{$open_elements->[-1]->[1]}) {                $self->_reset_insertion_mode;
4779                  !!!parse-error;                
4780                  pop @$open_elements;                !!!next-token;
               }  
   
               pop @$open_elements; # tr  
               $insertion_mode = 'in table body';  
               ## reprocess  
4781                redo B;                redo B;
4782              } elsif ({              } elsif ({
4783                        tbody => 1, tfoot => 1, thead => 1,                        tbody => 1, tfoot => 1, thead => 1,
4784                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}} and
4785                ## have an element in table scope                       $self->{insertion_mode} & ROW_IMS) {
4786                my $i;                if ($self->{insertion_mode} == IN_ROW_IM) {
4787                INSCOPE: for (reverse 0..$#$open_elements) {                  ## have an element in table scope
4788                  my $node = $open_elements->[$_];                  my $i;
4789                  if ($node->[1] eq $token->{tag_name}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4790                    $i = $_;                    my $node = $self->{open_elements}->[$_];
4791                    last INSCOPE;                    if ($node->[1] eq $token->{tag_name}) {
4792                  } elsif ({                      !!!cp ('t247');
4793                            table => 1, html => 1,                      $i = $_;
4794                           }->{$node->[1]}) {                      last INSCOPE;
4795                    last INSCOPE;                    } elsif ({
4796                                table => 1, html => 1,
4797                               }->{$node->[1]}) {
4798                        !!!cp ('t248');
4799                        last INSCOPE;
4800                      }
4801                    } # INSCOPE
4802                      unless (defined $i) {
4803                        !!!cp ('t249');
4804                        !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4805                        ## Ignore the token
4806                        !!!next-token;
4807                        redo B;
4808                      }
4809                    
4810                    ## As if </tr>
4811                    ## have an element in table scope
4812                    my $i;
4813                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4814                      my $node = $self->{open_elements}->[$_];
4815                      if ($node->[1] eq 'tr') {
4816                        !!!cp ('t250');
4817                        $i = $_;
4818                        last INSCOPE;
4819                      } elsif ({
4820                                table => 1, html => 1,
4821                               }->{$node->[1]}) {
4822                        !!!cp ('t251');
4823                        last INSCOPE;
4824                      }
4825                    } # INSCOPE
4826                      unless (defined $i) {
4827                        !!!cp ('t252');
4828                        !!!parse-error (type => 'unmatched end tag:tr');
4829                        ## Ignore the token
4830                        !!!next-token;
4831                        redo B;
4832                      }
4833                    
4834                    ## Clear back to table row context
4835                    while (not {
4836                      tr => 1, html => 1,
4837                    }->{$self->{open_elements}->[-1]->[1]}) {
4838                      !!!cp ('t253');
4839    ## ISSUE: Can this case be reached?
4840                      pop @{$self->{open_elements}};
4841                  }                  }
4842                } # INSCOPE                  
4843                unless (defined $i) {                  pop @{$self->{open_elements}}; # tr
4844                  !!!parse-error;                  $self->{insertion_mode} = IN_TABLE_BODY_IM;
4845                  ## Ignore the token                  ## reprocess in the "in table body" insertion mode...
                 !!!next-token;  
                 redo B;  
4846                }                }
4847    
               ## As if </tr>  
4848                ## have an element in table scope                ## have an element in table scope
4849                my $i;                my $i;
4850                INSCOPE: for (reverse 0..$#$open_elements) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4851                  my $node = $open_elements->[$_];                  my $node = $self->{open_elements}->[$_];
4852                  if ($node->[1] eq 'tr') {                  if ($node->[1] eq $token->{tag_name}) {
4853                      !!!cp ('t254');
4854                    $i = $_;                    $i = $_;
4855                    last INSCOPE;                    last INSCOPE;
4856                  } elsif ({                  } elsif ({
4857                            table => 1, html => 1,                            table => 1, html => 1,
4858                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4859                      !!!cp ('t255');
4860                    last INSCOPE;                    last INSCOPE;
4861                  }                  }
4862                } # INSCOPE                } # INSCOPE
4863                unless (defined $i) {                unless (defined $i) {
4864                  !!!parse-error;                  !!!cp ('t256');
4865                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4866                  ## Ignore the token                  ## Ignore the token
4867                  !!!next-token;                  !!!next-token;
4868                  redo B;                  redo B;
4869                }                }
4870    
4871                ## Clear back to table row context                ## Clear back to table body context
4872                while (not {                while (not {
4873                  tr => 1, html => 1,                  tbody => 1, tfoot => 1, thead => 1, html => 1,
4874                }->{$open_elements->[-1]->[1]}) {                }->{$self->{open_elements}->[-1]->[1]}) {
4875                  !!!parse-error;                  !!!cp ('t257');
4876                  pop @$open_elements;  ## ISSUE: Can this case be reached?
4877                    pop @{$self->{open_elements}};
4878                }                }
4879    
4880                pop @$open_elements; # tr                pop @{$self->{open_elements}};
4881                $insertion_mode = 'in table body';                $self->{insertion_mode} = IN_TABLE_IM;
4882                ## reprocess                !!!next-token;
4883                redo B;                redo B;
4884              } elsif ({              } elsif ({
4885                        body => 1, caption => 1, col => 1,                        body => 1, caption => 1, col => 1, colgroup => 1,
4886                        colgroup => 1, html => 1, td => 1, th => 1,                        html => 1, td => 1, th => 1,
4887                          tr => 1, # $self->{insertion_mode} == IN_ROW_IM
4888                          tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM
4889                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4890                !!!parse-error;                !!!cp ('t258');
4891                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4892                ## Ignore the token                ## Ignore the token
4893                !!!next-token;                !!!next-token;
4894                redo B;                redo B;
4895              } else {          } else {
4896                #            !!!cp ('t259');
4897              }            !!!parse-error (type => 'in table:/'.$token->{tag_name});
           } else {  
             #  
           }  
4898    
4899            ## As if in table            $insert = $insert_to_foster;
4900            !!!parse-error;            #
4901            $in_body->($insert_to_foster);          }
4902            redo B;        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4903          } elsif ($insertion_mode eq 'in cell') {          unless ($self->{open_elements}->[-1]->[1] eq 'html' and
4904            if ($token->{type} eq 'character') {                  @{$self->{open_elements}} == 1) { # redundant, maybe
4905              ## NOTE: This is a code clone of "character in body".            !!!parse-error (type => 'in body:#eof');
4906              $reconstruct_active_formatting_elements->($insert_to_current);            !!!cp ('t259.1');
4907                          #
4908              $open_elements->[-1]->[0]->manakai_append_text ($token->{data});          } else {
4909              !!!cp ('t259.2');
4910              #
4911            }
4912    
4913              !!!next-token;          ## Stop parsing
4914              redo B;          last B;
4915            } elsif ($token->{type} eq 'comment') {        } else {
4916              ## NOTE: This is a code clone of "comment in body".          die "$0: $token->{type}: Unknown token type";
4917              my $comment = $self->{document}->create_comment ($token->{data});        }
4918              $open_elements->[-1]->[0]->append_child ($comment);      } elsif ($self->{insertion_mode} == IN_COLUMN_GROUP_IM) {
4919              !!!next-token;            if ($token->{type} == CHARACTER_TOKEN) {
4920              redo B;              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4921            } elsif ($token->{type} eq 'start tag') {                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4922              if ({                unless (length $token->{data}) {
4923                   caption => 1, col => 1, colgroup => 1,                  !!!cp ('t260');
                  tbody => 1, td => 1, tfoot => 1, th => 1,  
                  thead => 1, tr => 1,  
                 }->{$token->{tag_name}}) {  
               ## have an element in table scope  
               my $tn;  
               INSCOPE: for (reverse 0..$#$open_elements) {  
                 my $node = $open_elements->[$_];  
                 if ($node->[1] eq 'td' or $node->[1] eq 'th') {  
                   $tn = $node->[1];  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $tn) {  
                 !!!parse-error;  
                 ## Ignore the token  
4924                  !!!next-token;                  !!!next-token;
4925                  redo B;                  redo B;
4926                }                }
4927                }
4928                ## Close the cell              
4929                !!!back-token; # <?>              !!!cp ('t261');
4930                $token = {type => 'end tag', tag_name => $tn};              #
4931              } elsif ($token->{type} == START_TAG_TOKEN) {
4932                if ($token->{tag_name} eq 'col') {
4933                  !!!cp ('t262');
4934                  !!!insert-element ($token->{tag_name}, $token->{attributes});
4935                  pop @{$self->{open_elements}};
4936                  !!!next-token;
4937                redo B;                redo B;
4938              } else {              } else {
4939                  !!!cp ('t263');
4940                #                #
4941              }              }
4942            } elsif ($token->{type} eq 'end tag') {            } elsif ($token->{type} == END_TAG_TOKEN) {
4943              if ($token->{tag_name} eq 'td' or $token->{tag_name} eq 'th') {              if ($token->{tag_name} eq 'colgroup') {
4944                ## have an element in table scope                if ($self->{open_elements}->[-1]->[1] eq 'html') {
4945                my $i;                  !!!cp ('t264');
4946                INSCOPE: for (reverse 0..$#$open_elements) {                  !!!parse-error (type => 'unmatched end tag:colgroup');
                 my $node = $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;  
4947                  ## Ignore the token                  ## Ignore the token
4948                  !!!next-token;                  !!!next-token;
4949                  redo B;                  redo B;
4950                  } else {
4951                    !!!cp ('t265');
4952                    pop @{$self->{open_elements}}; # colgroup
4953                    $self->{insertion_mode} = IN_TABLE_IM;
4954                    !!!next-token;
4955                    redo B;            
4956                }                }
4957                              } elsif ($token->{tag_name} eq 'col') {
4958                ## generate implied end tags                !!!cp ('t266');
4959                if ({                !!!parse-error (type => 'unmatched end tag:col');
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => ($token->{tag_name} eq 'th'),  
                    th => ($token->{tag_name} eq 'td'),  
                    tr => 1,  
                   }->{$open_elements->[-1]->[1]}) {  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $open_elements->[-1]->[1]}; # MUST  
                 redo B;  
               }  
   
               if ($open_elements->[-1]->[1] ne $token->{tag_name}) {  
                 !!!parse-error;  
               }  
   
               splice @$open_elements, $i;  
   
               $clear_up_to_marker->();  
   
               $insertion_mode = 'in row';  
   
               !!!next-token;  
               redo B;  
             } elsif ({  
                       body => 1, caption => 1, col => 1,  
                       colgroup => 1, html => 1,  
                      }->{$token->{tag_name}}) {  
               !!!parse-error;  
4960                ## Ignore the token                ## Ignore the token
4961                !!!next-token;                !!!next-token;
4962                redo B;                redo B;
             } elsif ({  
                       table => 1, tbody => 1, tfoot => 1,  
                       thead => 1, tr => 1,  
                      }->{$token->{tag_name}}) {  
               ## have an element in table scope  
               my $i;  
               my $tn;  
               INSCOPE: for (reverse 0..$#$open_elements) {  
                 my $node = $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;  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
   
               ## Close the cell  
               !!!back-token; # </?>  
               $token = {type => 'end tag', tag_name => $tn};  
               redo B;  
4963              } else {              } else {
4964                #                !!!cp ('t267');
4965                  #
4966              }              }
4967            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4968              #          if ($self->{open_elements}->[-1]->[1] eq 'html' or
4969            }              @{$self->{open_elements}} == 1) { # redundant, maybe
4970                        !!!cp ('t270.2');
4971            $in_body->($insert_to_current);            ## Stop parsing.
4972              last B;
4973            } else {
4974              ## NOTE: As if </colgroup>.
4975              !!!cp ('t270.1');
4976              pop @{$self->{open_elements}}; # colgroup
4977              $self->{insertion_mode} = IN_TABLE_IM;
4978              ## Reprocess.
4979            redo B;            redo B;
4980          } elsif ($insertion_mode eq 'in select') {          }
4981            if ($token->{type} eq 'character') {        } else {
4982              $open_elements->[-1]->[0]->manakai_append_text ($token->{data});          die "$0: $token->{type}: Unknown token type";
4983          }
4984    
4985              ## As if </colgroup>
4986              if ($self->{open_elements}->[-1]->[1] eq 'html') {
4987                !!!cp ('t269');
4988    ## TODO: Wrong error type?
4989                !!!parse-error (type => 'unmatched end tag:colgroup');
4990                ## Ignore the token
4991              !!!next-token;              !!!next-token;
4992              redo B;              redo B;
4993            } elsif ($token->{type} eq 'comment') {            } else {
4994              my $comment = $self->{document}->create_comment ($token->{data});              !!!cp ('t270');
4995              $open_elements->[-1]->[0]->append_child ($comment);              pop @{$self->{open_elements}}; # colgroup
4996              !!!next-token;              $self->{insertion_mode} = IN_TABLE_IM;
4997                ## reprocess
4998              redo B;              redo B;
4999            } elsif ($token->{type} eq 'start tag') {            }
5000        } elsif ($self->{insertion_mode} & SELECT_IMS) {
5001          if ($token->{type} == CHARACTER_TOKEN) {
5002            !!!cp ('t271');
5003            $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
5004            !!!next-token;
5005            redo B;
5006          } elsif ($token->{type} == START_TAG_TOKEN) {
5007              if ($token->{tag_name} eq 'option') {              if ($token->{tag_name} eq 'option') {
5008                if ($open_elements->[-1]->[1] eq 'option') {                if ($self->{open_elements}->[-1]->[1] eq 'option') {
5009                    !!!cp ('t272');
5010                  ## As if </option>                  ## As if </option>
5011                  pop @$open_elements;                  pop @{$self->{open_elements}};
5012                  } else {
5013                    !!!cp ('t273');
5014                }                }
5015    
5016                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes});
5017                !!!next-token;                !!!next-token;
5018                redo B;                redo B;
5019              } elsif ($token->{tag_name} eq 'optgroup') {              } elsif ($token->{tag_name} eq 'optgroup') {
5020                if ($open_elements->[-1]->[1] eq 'option') {                if ($self->{open_elements}->[-1]->[1] eq 'option') {
5021                    !!!cp ('t274');
5022                  ## As if </option>                  ## As if </option>
5023                  pop @$open_elements;                  pop @{$self->{open_elements}};
5024                  } else {
5025                    !!!cp ('t275');
5026                }                }
5027    
5028                if ($open_elements->[-1]->[1] eq 'optgroup') {                if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {
5029                    !!!cp ('t276');
5030                  ## As if </optgroup>                  ## As if </optgroup>
5031                  pop @$open_elements;                  pop @{$self->{open_elements}};
5032                  } else {
5033                    !!!cp ('t277');
5034                }                }
5035    
5036                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes});
5037                !!!next-token;                !!!next-token;
5038                redo B;                redo B;
5039              } elsif ($token->{tag_name} eq 'select') {          } elsif ($token->{tag_name} eq 'select' or
5040                !!!parse-error;                   $token->{tag_name} eq 'input' or
5041                ## As if </select> instead                   ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
5042                      {
5043                       caption => 1, table => 1,
5044                       tbody => 1, tfoot => 1, thead => 1,
5045                       tr => 1, td => 1, th => 1,
5046                      }->{$token->{tag_name}})) {
5047              ## TODO: The type below is not good - <select> is replaced by </select>
5048              !!!parse-error (type => 'not closed:select');
5049              ## NOTE: As if the token were </select> (<select> case) or
5050              ## as if there were </select> (otherwise).
5051                ## have an element in table scope                ## have an element in table scope
5052                my $i;                my $i;
5053                INSCOPE: for (reverse 0..$#$open_elements) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5054                  my $node = $open_elements->[$_];                  my $node = $self->{open_elements}->[$_];
5055                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq 'select') {
5056                      !!!cp ('t278');
5057                    $i = $_;                    $i = $_;
5058                    last INSCOPE;                    last INSCOPE;
5059                  } elsif ({                  } elsif ({
5060                            table => 1, html => 1,                            table => 1, html => 1,
5061                           }->{$node->[1]}) {                           }->{$node->[1]}) {
5062                      !!!cp ('t279');
5063                    last INSCOPE;                    last INSCOPE;
5064                  }                  }
5065                } # INSCOPE                } # INSCOPE
5066                unless (defined $i) {                unless (defined $i) {
5067                  !!!parse-error;                  !!!cp ('t280');
5068                    !!!parse-error (type => 'unmatched end tag:select');
5069                  ## Ignore the token                  ## Ignore the token
5070                  !!!next-token;                  !!!next-token;
5071                  redo B;                  redo B;
5072                }                }
5073                                
5074                splice @$open_elements, $i;                !!!cp ('t281');
5075                  splice @{$self->{open_elements}}, $i;
5076    
5077                $reset_insertion_mode->();                $self->_reset_insertion_mode;
5078    
5079                !!!next-token;            if ($token->{tag_name} eq 'select') {
5080                redo B;              !!!cp ('t281.2');
5081              } else {              !!!next-token;
5082                #              redo B;
5083              }            } else {
5084            } elsif ($token->{type} eq 'end tag') {              !!!cp ('t281.1');
5085                ## Reprocess the token.
5086                redo B;
5087              }
5088            } else {
5089              !!!cp ('t282');
5090              !!!parse-error (type => 'in select:'.$token->{tag_name});
5091              ## Ignore the token
5092              !!!next-token;
5093              redo B;
5094            }
5095          } elsif ($token->{type} == END_TAG_TOKEN) {
5096              if ($token->{tag_name} eq 'optgroup') {              if ($token->{tag_name} eq 'optgroup') {
5097                if ($open_elements->[-1]->[1] eq 'option' and                if ($self->{open_elements}->[-1]->[1] eq 'option' and
5098                    $open_elements->[-2]->[1] eq 'optgroup') {                    $self->{open_elements}->[-2]->[1] eq 'optgroup') {
5099                    !!!cp ('t283');
5100                  ## As if </option>                  ## As if </option>
5101                  splice @$open_elements, -2;                  splice @{$self->{open_elements}}, -2;
5102                } elsif ($open_elements->[-1]->[1] eq 'optgroup') {                } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {
5103                  pop @$open_elements;                  !!!cp ('t284');
5104                    pop @{$self->{open_elements}};
5105                } else {                } else {
5106                  !!!parse-error;                  !!!cp ('t285');
5107                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5108                  ## Ignore the token                  ## Ignore the token
5109                }                }
5110                !!!next-token;                !!!next-token;
5111                redo B;                redo B;
5112              } elsif ($token->{tag_name} eq 'option') {              } elsif ($token->{tag_name} eq 'option') {
5113                if ($open_elements->[-1]->[1] eq 'option') {                if ($self->{open_elements}->[-1]->[1] eq 'option') {
5114                  pop @$open_elements;                  !!!cp ('t286');
5115                    pop @{$self->{open_elements}};
5116                } else {                } else {
5117                  !!!parse-error;                  !!!cp ('t287');
5118                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5119                  ## Ignore the token                  ## Ignore the token
5120                }                }
5121                !!!next-token;                !!!next-token;
# Line 4396  sub _construct_tree ($) { Line 5123  sub _construct_tree ($) {
5123              } elsif ($token->{tag_name} eq 'select') {              } elsif ($token->{tag_name} eq 'select') {
5124                ## have an element in table scope                ## have an element in table scope
5125                my $i;                my $i;
5126                INSCOPE: for (reverse 0..$#$open_elements) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5127                  my $node = $open_elements->[$_];                  my $node = $self->{open_elements}->[$_];
5128                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
5129                      !!!cp ('t288');
5130                    $i = $_;                    $i = $_;
5131                    last INSCOPE;                    last INSCOPE;
5132                  } elsif ({                  } elsif ({
5133                            table => 1, html => 1,                            table => 1, html => 1,
5134                           }->{$node->[1]}) {                           }->{$node->[1]}) {
5135                      !!!cp ('t289');
5136                    last INSCOPE;                    last INSCOPE;
5137                  }                  }
5138                } # INSCOPE                } # INSCOPE
5139                unless (defined $i) {                unless (defined $i) {
5140                  !!!parse-error;                  !!!cp ('t290');
5141                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5142                  ## Ignore the token                  ## Ignore the token
5143                  !!!next-token;                  !!!next-token;
5144                  redo B;                  redo B;
5145                }                }
5146                                
5147                splice @$open_elements, $i;                !!!cp ('t291');
5148                  splice @{$self->{open_elements}}, $i;
5149    
5150                $reset_insertion_mode->();                $self->_reset_insertion_mode;
5151    
5152                !!!next-token;                !!!next-token;
5153                redo B;                redo B;
5154              } elsif ({          } elsif ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
5155                        caption => 1, table => 1, tbody => 1,                   {
5156                        tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,                    caption => 1, table => 1, tbody => 1,
5157                       }->{$token->{tag_name}}) {                    tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
5158                !!!parse-error;                   }->{$token->{tag_name}}) {
5159    ## TODO: The following is wrong?
5160                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5161                                
5162                ## have an element in table scope                ## have an element in table scope
5163                my $i;                my $i;
5164                INSCOPE: for (reverse 0..$#$open_elements) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5165                  my $node = $open_elements->[$_];                  my $node = $self->{open_elements}->[$_];
5166                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
5167                      !!!cp ('t292');
5168                    $i = $_;                    $i = $_;
5169                    last INSCOPE;                    last INSCOPE;
5170                  } elsif ({                  } elsif ({
5171                            table => 1, html => 1,                            table => 1, html => 1,
5172                           }->{$node->[1]}) {                           }->{$node->[1]}) {
5173                      !!!cp ('t293');
5174                    last INSCOPE;                    last INSCOPE;
5175                  }                  }
5176                } # INSCOPE                } # INSCOPE
5177                unless (defined $i) {                unless (defined $i) {
5178                    !!!cp ('t294');
5179                  ## Ignore the token                  ## Ignore the token
5180                  !!!next-token;                  !!!next-token;
5181                  redo B;                  redo B;
# Line 4448  sub _construct_tree ($) { Line 5184  sub _construct_tree ($) {
5184                ## As if </select>                ## As if </select>
5185                ## have an element in table scope                ## have an element in table scope
5186                undef $i;                undef $i;
5187                INSCOPE: for (reverse 0..$#$open_elements) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5188                  my $node = $open_elements->[$_];                  my $node = $self->{open_elements}->[$_];
5189                  if ($node->[1] eq 'select') {                  if ($node->[1] eq 'select') {
5190                      !!!cp ('t295');
5191                    $i = $_;                    $i = $_;
5192                    last INSCOPE;                    last INSCOPE;
5193                  } elsif ({                  } elsif ({
5194                            table => 1, html => 1,                            table => 1, html => 1,
5195                           }->{$node->[1]}) {                           }->{$node->[1]}) {
5196    ## ISSUE: Can this state be reached?
5197                      !!!cp ('t296');
5198                    last INSCOPE;                    last INSCOPE;
5199                  }                  }
5200                } # INSCOPE                } # INSCOPE
5201                unless (defined $i) {                unless (defined $i) {
5202                  !!!parse-error;                  !!!cp ('t297');
5203    ## TODO: The following error type is correct?
5204                    !!!parse-error (type => 'unmatched end tag:select');
5205                  ## Ignore the </select> token                  ## Ignore the </select> token
5206                  !!!next-token; ## TODO: ok?                  !!!next-token; ## TODO: ok?
5207                  redo B;                  redo B;
5208                }                }
5209                                
5210                splice @$open_elements, $i;                !!!cp ('t298');
5211                  splice @{$self->{open_elements}}, $i;
5212    
5213                $reset_insertion_mode->();                $self->_reset_insertion_mode;
5214    
5215                ## reprocess                ## reprocess
5216                redo B;                redo B;
5217              } else {          } else {
5218                #            !!!cp ('t299');
5219              }            !!!parse-error (type => 'in select:/'.$token->{tag_name});
           } else {  
             #  
           }  
   
           !!!parse-error;  
5220            ## Ignore the token            ## Ignore the token
5221            !!!next-token;            !!!next-token;
5222            redo B;            redo B;
5223          } elsif ($insertion_mode eq 'after body') {          }
5224            if ($token->{type} eq 'character') {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5225              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          unless ($self->{open_elements}->[-1]->[1] eq 'html' and
5226                ## As if in body                  @{$self->{open_elements}} == 1) { # redundant, maybe
5227                $reconstruct_active_formatting_elements->($insert_to_current);            !!!cp ('t299.1');
5228                            !!!parse-error (type => 'in body:#eof');
5229                $open_elements->[-1]->[0]->manakai_append_text ($token->{data});          } else {
5230              !!!cp ('t299.2');
5231            }
5232    
5233                unless (length $token->{data}) {          ## Stop parsing.
5234                  !!!next-token;          last B;
5235                  redo B;        } else {
5236                }          die "$0: $token->{type}: Unknown token type";
5237              }        }
5238                    } elsif ($self->{insertion_mode} & BODY_AFTER_IMS) {
5239              #        if ($token->{type} == CHARACTER_TOKEN) {
5240            } elsif ($token->{type} eq 'comment') {          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
5241              my $comment = $self->{document}->create_comment ($token->{data});            my $data = $1;
5242              $open_elements->[0]->[0]->append_child ($comment);            ## As if in body
5243              $reconstruct_active_formatting_elements->($insert_to_current);
5244                  
5245              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
5246              
5247              unless (length $token->{data}) {
5248                !!!cp ('t300');
5249              !!!next-token;              !!!next-token;
5250              redo B;              redo B;
5251            } elsif ($token->{type} eq 'end tag') {            }
5252              if ($token->{tag_name} eq 'html') {          }
5253                ## TODO: if inner_html, parse-error, ignore the token; otherwise,          
5254            if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5255              !!!cp ('t301');
5256              !!!parse-error (type => 'after html:#character');
5257    
5258                $phase = 'trailing end';            ## Reprocess in the "after body" insertion mode.
5259                !!!next-token;          } else {
5260                redo B;            !!!cp ('t302');
5261              } else {          }
5262                #          
5263              }          ## "after body" insertion mode
5264            !!!parse-error (type => 'after body:#character');
5265    
5266            $self->{insertion_mode} = IN_BODY_IM;
5267            ## reprocess
5268            redo B;
5269          } elsif ($token->{type} == START_TAG_TOKEN) {
5270            if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5271              !!!cp ('t303');
5272              !!!parse-error (type => 'after html:'.$token->{tag_name});
5273              
5274              ## Reprocess in the "after body" insertion mode.
5275            } else {
5276              !!!cp ('t304');
5277            }
5278    
5279            ## "after body" insertion mode
5280            !!!parse-error (type => 'after body:'.$token->{tag_name});
5281    
5282            $self->{insertion_mode} = IN_BODY_IM;
5283            ## reprocess
5284            redo B;
5285          } elsif ($token->{type} == END_TAG_TOKEN) {
5286            if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5287              !!!cp ('t305');
5288              !!!parse-error (type => 'after html:/'.$token->{tag_name});
5289              
5290              $self->{insertion_mode} = AFTER_BODY_IM;
5291              ## Reprocess in the "after body" insertion mode.
5292            } else {
5293              !!!cp ('t306');
5294            }
5295    
5296            ## "after body" insertion mode
5297            if ($token->{tag_name} eq 'html') {
5298              if (defined $self->{inner_html_node}) {
5299                !!!cp ('t307');
5300                !!!parse-error (type => 'unmatched end tag:html');
5301                ## Ignore the token
5302                !!!next-token;
5303                redo B;
5304            } else {            } else {
5305              #              !!!cp ('t308');
5306                $self->{insertion_mode} = AFTER_HTML_BODY_IM;
5307                !!!next-token;
5308                redo B;
5309            }            }
5310            } else {
5311              !!!cp ('t309');
5312              !!!parse-error (type => 'after body:/'.$token->{tag_name});
5313    
5314            !!!parse-error ('data after body');            $self->{insertion_mode} = IN_BODY_IM;
           $insertion_mode = 'in body';  
5315            ## reprocess            ## reprocess
5316            redo B;            redo B;
5317          } elsif ($insertion_mode eq 'in frameset') {          }
5318            if ($token->{type} eq 'character') {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5319              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          !!!cp ('t309.2');
5320                $open_elements->[-1]->[0]->manakai_append_text ($token->{data});          ## Stop parsing
5321            last B;
5322          } else {
5323            die "$0: $token->{type}: Unknown token type";
5324          }
5325        } elsif ($self->{insertion_mode} & FRAME_IMS) {
5326          if ($token->{type} == CHARACTER_TOKEN) {
5327            if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
5328              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
5329              
5330              unless (length $token->{data}) {
5331                !!!cp ('t310');
5332                !!!next-token;
5333                redo B;
5334              }
5335            }
5336            
5337            if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {
5338              if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5339                !!!cp ('t311');
5340                !!!parse-error (type => 'in frameset:#character');
5341              } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
5342                !!!cp ('t312');
5343                !!!parse-error (type => 'after frameset:#character');
5344              } else { # "after html frameset"
5345                !!!cp ('t313');
5346                !!!parse-error (type => 'after html:#character');
5347    
5348                $self->{insertion_mode} = AFTER_FRAMESET_IM;
5349                ## Reprocess in the "after frameset" insertion mode.
5350                !!!parse-error (type => 'after frameset:#character');
5351              }
5352              
5353              ## Ignore the token.
5354              if (length $token->{data}) {
5355                !!!cp ('t314');
5356                ## reprocess the rest of characters
5357              } else {
5358                !!!cp ('t315');
5359                !!!next-token;
5360              }
5361              redo B;
5362            }
5363            
5364            die qq[$0: Character "$token->{data}"];
5365          } elsif ($token->{type} == START_TAG_TOKEN) {
5366            if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
5367              !!!cp ('t316');
5368              !!!parse-error (type => 'after html:'.$token->{tag_name});
5369    
5370              $self->{insertion_mode} = AFTER_FRAMESET_IM;
5371              ## Process in the "after frameset" insertion mode.
5372            } else {
5373              !!!cp ('t317');
5374            }
5375    
5376            if ($token->{tag_name} eq 'frameset' and
5377                $self->{insertion_mode} == IN_FRAMESET_IM) {
5378              !!!cp ('t318');
5379              !!!insert-element ($token->{tag_name}, $token->{attributes});
5380              !!!next-token;
5381              redo B;
5382            } elsif ($token->{tag_name} eq 'frame' and
5383                     $self->{insertion_mode} == IN_FRAMESET_IM) {
5384              !!!cp ('t319');
5385              !!!insert-element ($token->{tag_name}, $token->{attributes});
5386              pop @{$self->{open_elements}};
5387              !!!next-token;
5388              redo B;
5389            } elsif ($token->{tag_name} eq 'noframes') {
5390              !!!cp ('t320');
5391              ## NOTE: As if in body.
5392              $parse_rcdata->(CDATA_CONTENT_MODEL);
5393              redo B;
5394            } else {
5395              if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5396                !!!cp ('t321');
5397                !!!parse-error (type => 'in frameset:'.$token->{tag_name});
5398              } else {
5399                !!!cp ('t322');
5400                !!!parse-error (type => 'after frameset:'.$token->{tag_name});
5401              }
5402              ## Ignore the token
5403              !!!next-token;
5404              redo B;
5405            }
5406          } elsif ($token->{type} == END_TAG_TOKEN) {
5407            if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
5408              !!!cp ('t323');
5409              !!!parse-error (type => 'after html:/'.$token->{tag_name});
5410    
5411              $self->{insertion_mode} = AFTER_FRAMESET_IM;
5412              ## Process in the "after frameset" insertion mode.
5413            } else {
5414              !!!cp ('t324');
5415            }
5416    
5417            if ($token->{tag_name} eq 'frameset' and
5418                $self->{insertion_mode} == IN_FRAMESET_IM) {
5419              if ($self->{open_elements}->[-1]->[1] eq 'html' and
5420                  @{$self->{open_elements}} == 1) {
5421                !!!cp ('t325');
5422                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5423                ## Ignore the token
5424                !!!next-token;
5425              } else {
5426                !!!cp ('t326');
5427                pop @{$self->{open_elements}};
5428                !!!next-token;
5429              }
5430    
5431                unless (length $token->{data}) {            if (not defined $self->{inner_html_node} and
5432                  !!!next-token;                $self->{open_elements}->[-1]->[1] ne 'frameset') {
5433                  redo B;              !!!cp ('t327');
5434                }              $self->{insertion_mode} = AFTER_FRAMESET_IM;
5435              } else {
5436                !!!cp ('t328');
5437              }
5438              redo B;
5439            } elsif ($token->{tag_name} eq 'html' and
5440                     $self->{insertion_mode} == AFTER_FRAMESET_IM) {
5441              !!!cp ('t329');
5442              $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;
5443              !!!next-token;
5444              redo B;
5445            } else {
5446              if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5447                !!!cp ('t330');
5448                !!!parse-error (type => 'in frameset:/'.$token->{tag_name});
5449              } else {
5450                !!!cp ('t331');
5451                !!!parse-error (type => 'after frameset:/'.$token->{tag_name});
5452              }
5453              ## Ignore the token
5454              !!!next-token;
5455              redo B;
5456            }
5457          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5458            unless ($self->{open_elements}->[-1]->[1] eq 'html' and
5459                    @{$self->{open_elements}} == 1) { # redundant, maybe
5460              !!!cp ('t331.1');
5461              !!!parse-error (type => 'in body:#eof');
5462            } else {
5463              !!!cp ('t331.2');
5464            }
5465            
5466            ## Stop parsing
5467            last B;
5468          } else {
5469            die "$0: $token->{type}: Unknown token type";
5470          }
5471    
5472          ## ISSUE: An issue in spec here
5473        } else {
5474          die "$0: $self->{insertion_mode}: Unknown insertion mode";
5475        }
5476    
5477        ## "in body" insertion mode
5478        if ($token->{type} == START_TAG_TOKEN) {
5479          if ($token->{tag_name} eq 'script') {
5480            !!!cp ('t332');
5481            ## NOTE: This is an "as if in head" code clone
5482            $script_start_tag->();
5483            redo B;
5484          } elsif ($token->{tag_name} eq 'style') {
5485            !!!cp ('t333');
5486            ## NOTE: This is an "as if in head" code clone
5487            $parse_rcdata->(CDATA_CONTENT_MODEL);
5488            redo B;
5489          } elsif ({
5490                    base => 1, link => 1,
5491                   }->{$token->{tag_name}}) {
5492            !!!cp ('t334');
5493            ## NOTE: This is an "as if in head" code clone, only "-t" differs
5494            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5495            pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
5496            !!!next-token;
5497            redo B;
5498          } elsif ($token->{tag_name} eq 'meta') {
5499            ## NOTE: This is an "as if in head" code clone, only "-t" differs
5500            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5501            my $meta_el = pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
5502    
5503            unless ($self->{confident}) {
5504              if ($token->{attributes}->{charset}) { ## TODO: And if supported
5505                !!!cp ('t335');
5506                $self->{change_encoding}
5507                    ->($self, $token->{attributes}->{charset}->{value});
5508                
5509                $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
5510                    ->set_user_data (manakai_has_reference =>
5511                                         $token->{attributes}->{charset}
5512                                             ->{has_reference});
5513              } elsif ($token->{attributes}->{content}) {
5514                ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.
5515                if ($token->{attributes}->{content}->{value}
5516                    =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
5517                        [\x09-\x0D\x20]*=
5518                        [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
5519                        ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {
5520                  !!!cp ('t336');
5521                  $self->{change_encoding}
5522                      ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);
5523                  $meta_el->[0]->get_attribute_node_ns (undef, 'content')
5524                      ->set_user_data (manakai_has_reference =>
5525                                           $token->{attributes}->{content}
5526                                                 ->{has_reference});
5527              }              }
5528              }
5529            } else {
5530              if ($token->{attributes}->{charset}) {
5531                !!!cp ('t337');
5532                $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
5533                    ->set_user_data (manakai_has_reference =>
5534                                         $token->{attributes}->{charset}
5535                                             ->{has_reference});
5536              }
5537              if ($token->{attributes}->{content}) {
5538                !!!cp ('t338');
5539                $meta_el->[0]->get_attribute_node_ns (undef, 'content')
5540                    ->set_user_data (manakai_has_reference =>
5541                                         $token->{attributes}->{content}
5542                                             ->{has_reference});
5543              }
5544            }
5545    
5546              #          !!!next-token;
5547            } elsif ($token->{type} eq 'comment') {          redo B;
5548              my $comment = $self->{document}->create_comment ($token->{data});        } elsif ($token->{tag_name} eq 'title') {
5549              $open_elements->[-1]->[0]->append_child ($comment);          !!!cp ('t341');
5550              !!!next-token;          ## NOTE: This is an "as if in head" code clone
5551            $parse_rcdata->(RCDATA_CONTENT_MODEL);
5552            redo B;
5553          } elsif ($token->{tag_name} eq 'body') {
5554            !!!parse-error (type => 'in body:body');
5555                  
5556            if (@{$self->{open_elements}} == 1 or
5557                $self->{open_elements}->[1]->[1] ne 'body') {
5558              !!!cp ('t342');
5559              ## Ignore the token
5560            } else {
5561              my $body_el = $self->{open_elements}->[1]->[0];
5562              for my $attr_name (keys %{$token->{attributes}}) {
5563                unless ($body_el->has_attribute_ns (undef, $attr_name)) {
5564                  !!!cp ('t343');
5565                  $body_el->set_attribute_ns
5566                    (undef, [undef, $attr_name],
5567                     $token->{attributes}->{$attr_name}->{value});
5568                }
5569              }
5570            }
5571            !!!next-token;
5572            redo B;
5573          } elsif ({
5574                    address => 1, blockquote => 1, center => 1, dir => 1,
5575                    div => 1, dl => 1, fieldset => 1,
5576                    h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
5577                    menu => 1, ol => 1, p => 1, ul => 1,
5578                    pre => 1, listing => 1,
5579                   }->{$token->{tag_name}}) {
5580            ## has a p element in scope
5581            INSCOPE: for (reverse @{$self->{open_elements}}) {
5582              if ($_->[1] eq 'p') {
5583                !!!cp ('t344');
5584                !!!back-token;
5585                $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5586              redo B;              redo B;
5587            } elsif ($token->{type} eq 'start tag') {            } elsif ({
5588              if ($token->{tag_name} eq 'frameset') {                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5589                !!!insert-element ($token->{tag_name}, $token->{attributes});                      button => 1, marquee => 1, object => 1, html => 1,
5590                !!!next-token;                     }->{$_->[1]}) {
5591                redo B;              !!!cp ('t345');
5592              } elsif ($token->{tag_name} eq 'frame') {              last INSCOPE;
5593                !!!insert-element ($token->{tag_name}, $token->{attributes});            }
5594                pop @$open_elements;          } # INSCOPE
5595              
5596            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5597            if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {
5598              !!!next-token;
5599              if ($token->{type} == CHARACTER_TOKEN) {
5600                $token->{data} =~ s/^\x0A//;
5601                unless (length $token->{data}) {
5602                  !!!cp ('t346');
5603                !!!next-token;                !!!next-token;
               redo B;  
             } elsif ($token->{tag_name} eq 'noframes') {  
               $in_body->($insert_to_current);  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'frameset') {  
               if ($open_elements->[-1]->[1] eq 'html' and  
                   @$open_elements == 1) {  
                 !!!parse-error;  
                 ## Ignore the token  
                 !!!next-token;  
               } else {  
                 pop @$open_elements;  
                 !!!next-token;  
               }  
                 
               ## if not inner_html and  
               if ($open_elements->[-1]->[1] ne 'frameset') {  
                 $insertion_mode = 'after frameset';  
               }  
               redo B;  
5604              } else {              } else {
5605                #                !!!cp ('t349');
5606              }              }
5607            } else {            } else {
5608              #              !!!cp ('t348');
5609            }            }
5610                      } else {
5611            !!!parse-error;            !!!cp ('t347');
5612              !!!next-token;
5613            }
5614            redo B;
5615          } elsif ($token->{tag_name} eq 'form') {
5616            if (defined $self->{form_element}) {
5617              !!!cp ('t350');
5618              !!!parse-error (type => 'in form:form');
5619            ## Ignore the token            ## Ignore the token
5620            !!!next-token;            !!!next-token;
5621            redo B;            redo B;
5622          } elsif ($insertion_mode eq 'after frameset') {          } else {
5623            if ($token->{type} eq 'character') {            ## has a p element in scope
5624              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {            INSCOPE: for (reverse @{$self->{open_elements}}) {
5625                $open_elements->[-1]->[0]->manakai_append_text ($token->{data});              if ($_->[1] eq 'p') {
5626                  !!!cp ('t351');
5627                unless (length $token->{data}) {                !!!back-token;
5628                  !!!next-token;                $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5629                  redo B;                redo B;
5630                }              } elsif ({
5631                          applet => 1, table => 1, caption => 1, td => 1, th => 1,
5632                          button => 1, marquee => 1, object => 1, html => 1,
5633                         }->{$_->[1]}) {
5634                  !!!cp ('t352');
5635                  last INSCOPE;
5636              }              }
5637              } # INSCOPE
5638              #              
5639            } elsif ($token->{type} eq 'comment') {            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5640              my $comment = $self->{document}->create_comment ($token->{data});            $self->{form_element} = $self->{open_elements}->[-1]->[0];
5641              $open_elements->[-1]->[0]->append_child ($comment);            !!!next-token;
5642              !!!next-token;            redo B;
5643            }
5644          } elsif ($token->{tag_name} eq 'li') {
5645            ## has a p element in scope
5646            INSCOPE: for (reverse @{$self->{open_elements}}) {
5647              if ($_->[1] eq 'p') {
5648                !!!cp ('t353');
5649                !!!back-token;
5650                $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5651              redo B;              redo B;
5652            } elsif ($token->{type} eq 'start tag') {            } elsif ({
5653              if ($token->{tag_name} eq 'noframes') {                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5654                $in_body->($insert_to_current);                      button => 1, marquee => 1, object => 1, html => 1,
5655                redo B;                     }->{$_->[1]}) {
5656                !!!cp ('t354');
5657                last INSCOPE;
5658              }
5659            } # INSCOPE
5660              
5661            ## Step 1
5662            my $i = -1;
5663            my $node = $self->{open_elements}->[$i];
5664            LI: {
5665              ## Step 2
5666              if ($node->[1] eq 'li') {
5667                if ($i != -1) {
5668                  !!!cp ('t355');
5669                  !!!parse-error (type => 'end tag missing:'.
5670                                  $self->{open_elements}->[-1]->[1]);
5671              } else {              } else {
5672                #                !!!cp ('t356');
5673              }              }
5674            } elsif ($token->{type} eq 'end tag') {              splice @{$self->{open_elements}}, $i;
5675              if ($token->{tag_name} eq 'html') {              last LI;
5676                $phase = 'trailing end';            } else {
5677                !!!next-token;              !!!cp ('t357');
5678                redo B;            }
5679              
5680              ## Step 3
5681              if (not $formatting_category->{$node->[1]} and
5682                  #not $phrasing_category->{$node->[1]} and
5683                  ($special_category->{$node->[1]} or
5684                   $scoping_category->{$node->[1]}) and
5685                  $node->[1] ne 'address' and $node->[1] ne 'div') {
5686                !!!cp ('t358');
5687                last LI;
5688              }
5689              
5690              !!!cp ('t359');
5691              ## Step 4
5692              $i--;
5693              $node = $self->{open_elements}->[$i];
5694              redo LI;
5695            } # LI
5696              
5697            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5698            !!!next-token;
5699            redo B;
5700          } elsif ($token->{tag_name} eq 'dd' or $token->{tag_name} eq 'dt') {
5701            ## has a p element in scope
5702            INSCOPE: for (reverse @{$self->{open_elements}}) {
5703              if ($_->[1] eq 'p') {
5704                !!!cp ('t360');
5705                !!!back-token;
5706                $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5707                redo B;
5708              } elsif ({
5709                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
5710                        button => 1, marquee => 1, object => 1, html => 1,
5711                       }->{$_->[1]}) {
5712                !!!cp ('t361');
5713                last INSCOPE;
5714              }
5715            } # INSCOPE
5716              
5717            ## Step 1
5718            my $i = -1;
5719            my $node = $self->{open_elements}->[$i];
5720            LI: {
5721              ## Step 2
5722              if ($node->[1] eq 'dt' or $node->[1] eq 'dd') {
5723                if ($i != -1) {
5724                  !!!cp ('t362');
5725                  !!!parse-error (type => 'end tag missing:'.
5726                                  $self->{open_elements}->[-1]->[1]);
5727              } else {              } else {
5728                #                !!!cp ('t363');
5729              }              }
5730                splice @{$self->{open_elements}}, $i;
5731                last LI;
5732            } else {            } else {
5733              #              !!!cp ('t364');
5734              }
5735              
5736              ## Step 3
5737              if (not $formatting_category->{$node->[1]} and
5738                  #not $phrasing_category->{$node->[1]} and
5739                  ($special_category->{$node->[1]} or
5740                   $scoping_category->{$node->[1]}) and
5741                  $node->[1] ne 'address' and $node->[1] ne 'div') {
5742                !!!cp ('t365');
5743                last LI;
5744              }
5745              
5746              !!!cp ('t366');
5747              ## Step 4
5748              $i--;
5749              $node = $self->{open_elements}->[$i];
5750              redo LI;
5751            } # LI
5752              
5753            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5754            !!!next-token;
5755            redo B;
5756          } elsif ($token->{tag_name} eq 'plaintext') {
5757            ## has a p element in scope
5758            INSCOPE: for (reverse @{$self->{open_elements}}) {
5759              if ($_->[1] eq 'p') {
5760                !!!cp ('t367');
5761                !!!back-token;
5762                $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5763                redo B;
5764              } elsif ({
5765                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
5766                        button => 1, marquee => 1, object => 1, html => 1,
5767                       }->{$_->[1]}) {
5768                !!!cp ('t368');
5769                last INSCOPE;
5770            }            }
5771            } # INSCOPE
5772                        
5773            !!!parse-error;          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5774              
5775            $self->{content_model} = PLAINTEXT_CONTENT_MODEL;
5776              
5777            !!!next-token;
5778            redo B;
5779          } elsif ($token->{tag_name} eq 'a') {
5780            AFE: for my $i (reverse 0..$#$active_formatting_elements) {
5781              my $node = $active_formatting_elements->[$i];
5782              if ($node->[1] eq 'a') {
5783                !!!cp ('t371');
5784                !!!parse-error (type => 'in a:a');
5785                
5786                !!!back-token;
5787                $token = {type => END_TAG_TOKEN, tag_name => 'a'};
5788                $formatting_end_tag->($token->{tag_name});
5789                
5790                AFE2: for (reverse 0..$#$active_formatting_elements) {
5791                  if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
5792                    !!!cp ('t372');
5793                    splice @$active_formatting_elements, $_, 1;
5794                    last AFE2;
5795                  }
5796                } # AFE2
5797                OE: for (reverse 0..$#{$self->{open_elements}}) {
5798                  if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {
5799                    !!!cp ('t373');
5800                    splice @{$self->{open_elements}}, $_, 1;
5801                    last OE;
5802                  }
5803                } # OE
5804                last AFE;
5805              } elsif ($node->[0] eq '#marker') {
5806                !!!cp ('t374');
5807                last AFE;
5808              }
5809            } # AFE
5810              
5811            $reconstruct_active_formatting_elements->($insert_to_current);
5812    
5813            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5814            push @$active_formatting_elements, $self->{open_elements}->[-1];
5815    
5816            !!!next-token;
5817            redo B;
5818          } elsif ({
5819                    b => 1, big => 1, em => 1, font => 1, i => 1,
5820                    s => 1, small => 1, strile => 1,
5821                    strong => 1, tt => 1, u => 1,
5822                   }->{$token->{tag_name}}) {
5823            !!!cp ('t375');
5824            $reconstruct_active_formatting_elements->($insert_to_current);
5825            
5826            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5827            push @$active_formatting_elements, $self->{open_elements}->[-1];
5828            
5829            !!!next-token;
5830            redo B;
5831          } elsif ($token->{tag_name} eq 'nobr') {
5832            $reconstruct_active_formatting_elements->($insert_to_current);
5833    
5834            ## has a |nobr| element in scope
5835            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5836              my $node = $self->{open_elements}->[$_];
5837              if ($node->[1] eq 'nobr') {
5838                !!!cp ('t376');
5839                !!!parse-error (type => 'in nobr:nobr');
5840                !!!back-token;
5841                $token = {type => END_TAG_TOKEN, tag_name => 'nobr'};
5842                redo B;
5843              } elsif ({
5844                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
5845                        button => 1, marquee => 1, object => 1, html => 1,
5846                       }->{$node->[1]}) {
5847                !!!cp ('t377');
5848                last INSCOPE;
5849              }
5850            } # INSCOPE
5851            
5852            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5853            push @$active_formatting_elements, $self->{open_elements}->[-1];
5854            
5855            !!!next-token;
5856            redo B;
5857          } elsif ($token->{tag_name} eq 'button') {
5858            ## has a button element in scope
5859            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5860              my $node = $self->{open_elements}->[$_];
5861              if ($node->[1] eq 'button') {
5862                !!!cp ('t378');
5863                !!!parse-error (type => 'in button:button');
5864                !!!back-token;
5865                $token = {type => END_TAG_TOKEN, tag_name => 'button'};
5866                redo B;
5867              } elsif ({
5868                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
5869                        button => 1, marquee => 1, object => 1, html => 1,
5870                       }->{$node->[1]}) {
5871                !!!cp ('t379');
5872                last INSCOPE;
5873              }
5874            } # INSCOPE
5875              
5876            $reconstruct_active_formatting_elements->($insert_to_current);
5877              
5878            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5879    
5880            ## TODO: associate with $self->{form_element} if defined
5881    
5882            push @$active_formatting_elements, ['#marker', ''];
5883    
5884            !!!next-token;
5885            redo B;
5886          } elsif ({
5887                    applet => 1, marquee => 1, object => 1,
5888                   }->{$token->{tag_name}}) {
5889            !!!cp ('t380');
5890            $reconstruct_active_formatting_elements->($insert_to_current);
5891            
5892            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5893            push @$active_formatting_elements, ['#marker', ''];
5894            
5895            !!!next-token;
5896            redo B;
5897          } elsif ($token->{tag_name} eq 'xmp') {
5898            !!!cp ('t381');
5899            $reconstruct_active_formatting_elements->($insert_to_current);
5900            $parse_rcdata->(CDATA_CONTENT_MODEL);
5901            redo B;
5902          } elsif ($token->{tag_name} eq 'table') {
5903            ## has a p element in scope
5904            INSCOPE: for (reverse @{$self->{open_elements}}) {
5905              if ($_->[1] eq 'p') {
5906                !!!cp ('t382');
5907                !!!back-token;
5908                $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5909                redo B;
5910              } elsif ({
5911                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
5912                        button => 1, marquee => 1, object => 1, html => 1,
5913                       }->{$_->[1]}) {
5914                !!!cp ('t383');
5915                last INSCOPE;
5916              }
5917            } # INSCOPE
5918              
5919            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5920            push @{$open_tables}, [$self->{open_elements}->[-1]->[0]];
5921    
5922            $self->{insertion_mode} = IN_TABLE_IM;
5923              
5924            !!!next-token;
5925            redo B;
5926          } elsif ({
5927                    area => 1, basefont => 1, bgsound => 1, br => 1,
5928                    embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,
5929                    image => 1,
5930                   }->{$token->{tag_name}}) {
5931            if ($token->{tag_name} eq 'image') {
5932              !!!cp ('t384');
5933              !!!parse-error (type => 'image');
5934              $token->{tag_name} = 'img';
5935            } else {
5936              !!!cp ('t385');
5937            }
5938    
5939            ## NOTE: There is an "as if <br>" code clone.
5940            $reconstruct_active_formatting_elements->($insert_to_current);
5941            
5942            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5943            pop @{$self->{open_elements}};
5944            
5945            !!!next-token;
5946            redo B;
5947          } elsif ($token->{tag_name} eq 'hr') {
5948            ## has a p element in scope
5949            INSCOPE: for (reverse @{$self->{open_elements}}) {
5950              if ($_->[1] eq 'p') {
5951                !!!cp ('t386');
5952                !!!back-token;
5953                $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5954                redo B;
5955              } elsif ({
5956                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
5957                        button => 1, marquee => 1, object => 1, html => 1,
5958                       }->{$_->[1]}) {
5959                !!!cp ('t387');
5960                last INSCOPE;
5961              }
5962            } # INSCOPE
5963              
5964            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5965            pop @{$self->{open_elements}};
5966              
5967            !!!next-token;
5968            redo B;
5969          } elsif ($token->{tag_name} eq 'input') {
5970            !!!cp ('t388');
5971            $reconstruct_active_formatting_elements->($insert_to_current);
5972            
5973            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5974            ## TODO: associate with $self->{form_element} if defined
5975            pop @{$self->{open_elements}};
5976            
5977            !!!next-token;
5978            redo B;
5979          } elsif ($token->{tag_name} eq 'isindex') {
5980            !!!parse-error (type => 'isindex');
5981            
5982            if (defined $self->{form_element}) {
5983              !!!cp ('t389');
5984            ## Ignore the token            ## Ignore the token
5985            !!!next-token;            !!!next-token;
5986            redo B;            redo B;
5987            } else {
5988              my $at = $token->{attributes};
5989              my $form_attrs;
5990              $form_attrs->{action} = $at->{action} if $at->{action};
5991              my $prompt_attr = $at->{prompt};
5992              $at->{name} = {name => 'name', value => 'isindex'};
5993              delete $at->{action};
5994              delete $at->{prompt};
5995              my @tokens = (
5996                            {type => START_TAG_TOKEN, tag_name => 'form',
5997                             attributes => $form_attrs},
5998                            {type => START_TAG_TOKEN, tag_name => 'hr'},
5999                            {type => START_TAG_TOKEN, tag_name => 'p'},
6000                            {type => START_TAG_TOKEN, tag_name => 'label'},
6001                           );
6002              if ($prompt_attr) {
6003                !!!cp ('t390');
6004                push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value}};
6005              } else {
6006                !!!cp ('t391');
6007                push @tokens, {type => CHARACTER_TOKEN,
6008                               data => 'This is a searchable index. Insert your search keywords here: '}; # SHOULD
6009                ## TODO: make this configurable
6010              }
6011              push @tokens,
6012                            {type => START_TAG_TOKEN, tag_name => 'input', attributes => $at},
6013                            #{type => CHARACTER_TOKEN, data => ''}, # SHOULD
6014                            {type => END_TAG_TOKEN, tag_name => 'label'},
6015                            {type => END_TAG_TOKEN, tag_name => 'p'},
6016                            {type => START_TAG_TOKEN, tag_name => 'hr'},
6017                            {type => END_TAG_TOKEN, tag_name => 'form'};
6018              $token = shift @tokens;
6019              !!!back-token (@tokens);
6020              redo B;
6021            }
6022          } elsif ($token->{tag_name} eq 'textarea') {
6023            my $tag_name = $token->{tag_name};
6024            my $el;
6025            !!!create-element ($el, $token->{tag_name}, $token->{attributes});
6026            
6027            ## TODO: $self->{form_element} if defined
6028            $self->{content_model} = RCDATA_CONTENT_MODEL;
6029            delete $self->{escape}; # MUST
6030            
6031            $insert->($el);
6032            
6033            my $text = '';
6034            !!!next-token;
6035            if ($token->{type} == CHARACTER_TOKEN) {
6036              $token->{data} =~ s/^\x0A//;
6037              unless (length $token->{data}) {
6038                !!!cp ('t392');
6039                !!!next-token;
6040              } else {
6041                !!!cp ('t393');
6042              }
6043            } else {
6044              !!!cp ('t394');
6045            }
6046            while ($token->{type} == CHARACTER_TOKEN) {
6047              !!!cp ('t395');
6048              $text .= $token->{data};
6049              !!!next-token;
6050            }
6051            if (length $text) {
6052              !!!cp ('t396');
6053              $el->manakai_append_text ($text);
6054            }
6055            
6056            $self->{content_model} = PCDATA_CONTENT_MODEL;
6057            
6058            if ($token->{type} == END_TAG_TOKEN and
6059                $token->{tag_name} eq $tag_name) {
6060              !!!cp ('t397');
6061              ## Ignore the token
6062            } else {
6063              !!!cp ('t398');
6064              !!!parse-error (type => 'in RCDATA:#'.$token->{type});
6065            }
6066            !!!next-token;
6067            redo B;
6068          } elsif ({
6069                    iframe => 1,
6070                    noembed => 1,
6071                    noframes => 1,
6072                    noscript => 0, ## TODO: 1 if scripting is enabled
6073                   }->{$token->{tag_name}}) {
6074            !!!cp ('t399');
6075            ## NOTE: There is an "as if in body" code clone.
6076            $parse_rcdata->(CDATA_CONTENT_MODEL);
6077            redo B;
6078          } elsif ($token->{tag_name} eq 'select') {
6079            !!!cp ('t400');
6080            $reconstruct_active_formatting_elements->($insert_to_current);
6081            
6082            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
6083    
6084            ## ISSUE: An issue in spec there          ## TODO: associate with $self->{form_element} if defined
6085            
6086            if ($self->{insertion_mode} & TABLE_IMS or
6087                $self->{insertion_mode} & BODY_TABLE_IMS or
6088                $self->{insertion_mode} == IN_COLUMN_GROUP_IM) {
6089              !!!cp ('t400.1');
6090              $self->{insertion_mode} = IN_SELECT_IN_TABLE_IM;
6091          } else {          } else {
6092            die "$0: $insertion_mode: Unknown insertion mode";            !!!cp ('t400.2');
6093              $self->{insertion_mode} = IN_SELECT_IM;
6094          }          }
6095        }          !!!next-token;
6096      } elsif ($phase eq 'trailing end') {          redo B;
6097        ## states in the main stage is preserved yet # MUST        } elsif ({
6098                          caption => 1, col => 1, colgroup => 1, frame => 1,
6099        if ($token->{type} eq 'DOCTYPE') {                  frameset => 1, head => 1, option => 1, optgroup => 1,
6100          !!!parse-error;                  tbody => 1, td => 1, tfoot => 1, th => 1,
6101                    thead => 1, tr => 1,
6102                   }->{$token->{tag_name}}) {
6103            !!!cp ('t401');
6104            !!!parse-error (type => 'in body:'.$token->{tag_name});
6105          ## Ignore the token          ## Ignore the token
6106          !!!next-token;          !!!next-token;
6107          redo B;          redo B;
6108        } elsif ($token->{type} eq 'comment') {          
6109          my $comment = $self->{document}->create_comment ($token->{data});          ## ISSUE: An issue on HTML5 new elements in the spec.
6110          $self->{document}->append_child ($comment);        } else {
6111            !!!cp ('t402');
6112            $reconstruct_active_formatting_elements->($insert_to_current);
6113            
6114            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
6115            
6116          !!!next-token;          !!!next-token;
6117          redo B;          redo B;
6118        } elsif ($token->{type} eq 'character') {        }
6119          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {      } elsif ($token->{type} == END_TAG_TOKEN) {
6120            my $data = $1;        if ($token->{tag_name} eq 'body') {
6121            ## As if in the main phase.          if (@{$self->{open_elements}} > 1 and
6122            ## NOTE: The insertion mode in the main phase              $self->{open_elements}->[1]->[1] eq 'body') {
6123            ## just before the phase has been changed to the trailing            for (@{$self->{open_elements}}) {
6124            ## end phase is either "after body" or "after frameset".              unless ({
6125            $reconstruct_active_formatting_elements->($insert_to_current)                         dd => 1, dt => 1, li => 1, p => 1, td => 1,
6126              if $phase eq 'main';                         th => 1, tr => 1, body => 1, html => 1,
6127                         tbody => 1, tfoot => 1, thead => 1,
6128                        }->{$_->[1]}) {
6129                  !!!cp ('t403');
6130                  !!!parse-error (type => 'not closed:'.$_->[1]);
6131                } else {
6132                  !!!cp ('t404');
6133                }
6134              }
6135    
6136              $self->{insertion_mode} = AFTER_BODY_IM;
6137              !!!next-token;
6138              redo B;
6139            } else {
6140              !!!cp ('t405');
6141              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6142              ## Ignore the token
6143              !!!next-token;
6144              redo B;
6145            }
6146          } elsif ($token->{tag_name} eq 'html') {
6147            if (@{$self->{open_elements}} > 1 and $self->{open_elements}->[1]->[1] eq 'body') {
6148              ## ISSUE: There is an issue in the spec.
6149              if ($self->{open_elements}->[-1]->[1] ne 'body') {
6150                !!!cp ('t406');
6151                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]);
6152              } else {
6153                !!!cp ('t407');
6154              }
6155              $self->{insertion_mode} = AFTER_BODY_IM;
6156              ## reprocess
6157              redo B;
6158            } else {
6159              !!!cp ('t408');
6160              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6161              ## Ignore the token
6162              !!!next-token;
6163              redo B;
6164            }
6165          } elsif ({
6166                    address => 1, blockquote => 1, center => 1, dir => 1,
6167                    div => 1, dl => 1, fieldset => 1, listing => 1,
6168                    menu => 1, ol => 1, pre => 1, ul => 1,
6169                    dd => 1, dt => 1, li => 1,
6170                    applet => 1, button => 1, marquee => 1, object => 1,
6171                   }->{$token->{tag_name}}) {
6172            ## has an element in scope
6173            my $i;
6174            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6175              my $node = $self->{open_elements}->[$_];
6176              if ($node->[1] eq $token->{tag_name}) {
6177                !!!cp ('t410');
6178                $i = $_;
6179                last INSCOPE;
6180              } elsif ({
6181                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
6182                        button => 1, marquee => 1, object => 1, html => 1,
6183                       }->{$node->[1]}) {
6184                !!!cp ('t411');
6185                last INSCOPE;
6186              }
6187            } # INSCOPE
6188    
6189            unless (defined $i) { # has an element in scope
6190              !!!cp ('t413');
6191              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6192            } else {
6193              ## Step 1. generate implied end tags
6194              while ({
6195                      dd => ($token->{tag_name} ne 'dd'),
6196                      dt => ($token->{tag_name} ne 'dt'),
6197                      li => ($token->{tag_name} ne 'li'),
6198                      p => 1,
6199                     }->{$self->{open_elements}->[-1]->[1]}) {
6200                !!!cp ('t409');
6201                pop @{$self->{open_elements}};
6202              }
6203    
6204              ## Step 2.
6205              if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6206                !!!cp ('t412');
6207                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
6208              } else {
6209                !!!cp ('t414');
6210              }
6211    
6212              ## Step 3.
6213              splice @{$self->{open_elements}}, $i;
6214    
6215              ## Step 4.
6216              $clear_up_to_marker->()
6217                  if {
6218                    applet => 1, button => 1, marquee => 1, object => 1,
6219                  }->{$token->{tag_name}};
6220            }
6221            !!!next-token;
6222            redo B;
6223          } elsif ($token->{tag_name} eq 'form') {
6224            undef $self->{form_element};
6225    
6226            ## has an element in scope
6227            my $i;
6228            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6229              my $node = $self->{open_elements}->[$_];
6230              if ($node->[1] eq $token->{tag_name}) {
6231                !!!cp ('t418');
6232                $i = $_;
6233                last INSCOPE;
6234              } elsif ({
6235                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
6236                        button => 1, marquee => 1, object => 1, html => 1,
6237                       }->{$node->[1]}) {
6238                !!!cp ('t419');
6239                last INSCOPE;
6240              }
6241            } # INSCOPE
6242    
6243            unless (defined $i) { # has an element in scope
6244              !!!cp ('t421');
6245              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6246            } else {
6247              ## Step 1. generate implied end tags
6248              while ({
6249                      dd => 1, dt => 1, li => 1, p => 1,
6250                     }->{$self->{open_elements}->[-1]->[1]}) {
6251                !!!cp ('t417');
6252                pop @{$self->{open_elements}};
6253              }
6254                        
6255            $open_elements->[-1]->[0]->manakai_append_text ($data);            ## Step 2.
6256              if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6257                !!!cp ('t417.1');
6258                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
6259              } else {
6260                !!!cp ('t420');
6261              }  
6262                        
6263            unless (length $token->{data}) {            ## Step 3.
6264              !!!next-token;            splice @{$self->{open_elements}}, $i;
6265              redo B;          }
6266    
6267            !!!next-token;
6268            redo B;
6269          } elsif ({
6270                    h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
6271                   }->{$token->{tag_name}}) {
6272            ## has an element in scope
6273            my $i;
6274            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6275              my $node = $self->{open_elements}->[$_];
6276              if ({
6277                   h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
6278                  }->{$node->[1]}) {
6279                !!!cp ('t423');
6280                $i = $_;
6281                last INSCOPE;
6282              } elsif ({
6283                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
6284                        button => 1, marquee => 1, object => 1, html => 1,
6285                       }->{$node->[1]}) {
6286                !!!cp ('t424');
6287                last INSCOPE;
6288              }
6289            } # INSCOPE
6290    
6291            unless (defined $i) { # has an element in scope
6292              !!!cp ('t425.1');
6293              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6294            } else {
6295              ## Step 1. generate implied end tags
6296              while ({
6297                      dd => 1, dt => 1, li => 1, p => 1,
6298                     }->{$self->{open_elements}->[-1]->[1]}) {
6299                !!!cp ('t422');
6300                pop @{$self->{open_elements}};
6301              }
6302              
6303              ## Step 2.
6304              if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6305                !!!cp ('t425');
6306                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6307              } else {
6308                !!!cp ('t426');
6309              }
6310    
6311              ## Step 3.
6312              splice @{$self->{open_elements}}, $i;
6313            }
6314            
6315            !!!next-token;
6316            redo B;
6317          } elsif ($token->{tag_name} eq 'p') {
6318            ## has an element in scope
6319            my $i;
6320            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6321              my $node = $self->{open_elements}->[$_];
6322              if ($node->[1] eq $token->{tag_name}) {
6323                !!!cp ('t410.1');
6324                $i = $_;
6325                last INSCOPE;
6326              } elsif ({
6327                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
6328                        button => 1, marquee => 1, object => 1, html => 1,
6329                       }->{$node->[1]}) {
6330                !!!cp ('t411.1');
6331                last INSCOPE;
6332            }            }
6333            } # INSCOPE
6334    
6335            if (defined $i) {
6336              if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6337                !!!cp ('t412.1');
6338                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
6339              } else {
6340                !!!cp ('t414.1');
6341              }
6342    
6343              splice @{$self->{open_elements}}, $i;
6344            } else {
6345              !!!cp ('t413.1');
6346              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6347    
6348              !!!cp ('t415.1');
6349              ## As if <p>, then reprocess the current token
6350              my $el;
6351              !!!create-element ($el, 'p');
6352              $insert->($el);
6353              ## NOTE: Not inserted into |$self->{open_elements}|.
6354          }          }
6355    
6356          !!!parse-error;          !!!next-token;
         $phase = 'main';  
         ## reprocess  
6357          redo B;          redo B;
6358        } elsif ($token->{type} eq 'start tag' or        } elsif ({
6359                 $token->{type} eq 'end tag') {                  a => 1,
6360          !!!parse-error;                  b => 1, big => 1, em => 1, font => 1, i => 1,
6361          $phase = 'main';                  nobr => 1, s => 1, small => 1, strile => 1,
6362          ## reprocess                  strong => 1, tt => 1, u => 1,
6363                   }->{$token->{tag_name}}) {
6364            !!!cp ('t427');
6365            $formatting_end_tag->($token->{tag_name});
6366          redo B;          redo B;
6367        } elsif ($token->{type} eq 'end-of-file') {        } elsif ($token->{tag_name} eq 'br') {
6368          ## Stop parsing          !!!cp ('t428');
6369          last B;          !!!parse-error (type => 'unmatched end tag:br');
6370    
6371            ## As if <br>
6372            $reconstruct_active_formatting_elements->($insert_to_current);
6373            
6374            my $el;
6375            !!!create-element ($el, 'br');
6376            $insert->($el);
6377            
6378            ## Ignore the token.
6379            !!!next-token;
6380            redo B;
6381          } elsif ({
6382                    caption => 1, col => 1, colgroup => 1, frame => 1,
6383                    frameset => 1, head => 1, option => 1, optgroup => 1,
6384                    tbody => 1, td => 1, tfoot => 1, th => 1,
6385                    thead => 1, tr => 1,
6386                    area => 1, basefont => 1, bgsound => 1,
6387                    embed => 1, hr => 1, iframe => 1, image => 1,
6388                    img => 1, input => 1, isindex => 1, noembed => 1,
6389                    noframes => 1, param => 1, select => 1, spacer => 1,
6390                    table => 1, textarea => 1, wbr => 1,
6391                    noscript => 0, ## TODO: if scripting is enabled
6392                   }->{$token->{tag_name}}) {
6393            !!!cp ('t429');
6394            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6395            ## Ignore the token
6396            !!!next-token;
6397            redo B;
6398            
6399            ## ISSUE: Issue on HTML5 new elements in spec
6400            
6401        } else {        } else {
6402          die "$0: $token->{type}: Unknown token";          ## Step 1
6403            my $node_i = -1;
6404            my $node = $self->{open_elements}->[$node_i];
6405    
6406            ## Step 2
6407            S2: {
6408              if ($node->[1] eq $token->{tag_name}) {
6409                ## Step 1
6410                ## generate implied end tags
6411                while ({
6412                        dd => 1, dt => 1, li => 1, p => 1,
6413                       }->{$self->{open_elements}->[-1]->[1]}) {
6414                  !!!cp ('t430');
6415                  ## ISSUE: Can this case be reached?
6416                  pop @{$self->{open_elements}};
6417                }
6418            
6419                ## Step 2
6420                if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {
6421                  !!!cp ('t431');
6422                  ## NOTE: <x><y></x>
6423                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
6424                } else {
6425                  !!!cp ('t432');
6426                }
6427                
6428                ## Step 3
6429                splice @{$self->{open_elements}}, $node_i;
6430    
6431                !!!next-token;
6432                last S2;
6433              } else {
6434                ## Step 3
6435                if (not $formatting_category->{$node->[1]} and
6436                    #not $phrasing_category->{$node->[1]} and
6437                    ($special_category->{$node->[1]} or
6438                     $scoping_category->{$node->[1]})) {
6439                  !!!cp ('t433');
6440                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6441                  ## Ignore the token
6442                  !!!next-token;
6443                  last S2;
6444                }
6445    
6446                !!!cp ('t434');
6447              }
6448              
6449              ## Step 4
6450              $node_i--;
6451              $node = $self->{open_elements}->[$node_i];
6452              
6453              ## Step 5;
6454              redo S2;
6455            } # S2
6456            redo B;
6457        }        }
6458      }      }
6459        redo B;
6460    } # B    } # B
6461    
6462    ## Stop parsing # MUST    ## Stop parsing # MUST
6463        
6464    ## TODO: script stuffs    ## TODO: script stuffs
6465  } # _construct_tree  } # _tree_construct_main
6466    
6467  sub get_inner_html ($$$) {  sub set_inner_html ($$$) {
6468    my ($class, $node, $on_error) = @_;    my $class = shift;
6469      my $node = shift;
6470      my $s = \$_[0];
6471      my $onerror = $_[1];
6472    
6473    ## Step 1    ## ISSUE: Should {confident} be true?
   my $s = '';  
6474    
6475    my $in_cdata;    my $nt = $node->node_type;
6476    my $parent = $node;    if ($nt == 9) {
6477    while (defined $parent) {      # MUST
6478      if ($parent->node_type == 1 and      
6479          $parent->namespace_uri eq 'http://www.w3.org/1999/xhtml' and      ## Step 1 # MUST
6480          {      ## TODO: If the document has an active parser, ...
6481            style => 1, script => 1, xmp => 1, iframe => 1,      ## ISSUE: There is an issue in the spec.
6482            noembed => 1, noframes => 1, noscript => 1,      
6483          }->{$parent->local_name}) { ## TODO: case thingy      ## Step 2 # MUST
6484        $in_cdata = 1;      my @cn = @{$node->child_nodes};
6485        for (@cn) {
6486          $node->remove_child ($_);
6487      }      }
     $parent = $parent->parent_node;  
   }  
6488    
6489    ## Step 2      ## Step 3, 4, 5 # MUST
6490    my @node = @{$node->child_nodes};      $class->parse_string ($$s => $node, $onerror);
6491    C: while (@node) {    } elsif ($nt == 1) {
6492      my $child = shift @node;      ## TODO: If non-html element
6493      unless (ref $child) {  
6494        if ($child eq 'cdata-out') {      ## NOTE: Most of this code is copied from |parse_string|
6495          $in_cdata = 0;  
6496        } else {      ## Step 1 # MUST
6497          $s .= $child; # end tag      my $this_doc = $node->owner_document;
6498        }      my $doc = $this_doc->implementation->create_document;
6499        next C;      $doc->manakai_is_html (1);
6500      }      my $p = $class->new;
6501        $p->{document} = $doc;
6502    
6503        ## Step 8 # MUST
6504        my $i = 0;
6505        my $line = 1;
6506        my $column = 0;
6507        $p->{set_next_char} = sub {
6508          my $self = shift;
6509    
6510          pop @{$self->{prev_char}};
6511          unshift @{$self->{prev_char}}, $self->{next_char};
6512    
6513          $self->{next_char} = -1 and return if $i >= length $$s;
6514          $self->{next_char} = ord substr $$s, $i++, 1;
6515          $column++;
6516    
6517          if ($self->{next_char} == 0x000A) { # LF
6518            $line++;
6519            $column = 0;
6520            !!!cp ('i1');
6521          } elsif ($self->{next_char} == 0x000D) { # CR
6522            $i++ if substr ($$s, $i, 1) eq "\x0A";
6523            $self->{next_char} = 0x000A; # LF # MUST
6524            $line++;
6525            $column = 0;
6526            !!!cp ('i2');
6527          } elsif ($self->{next_char} > 0x10FFFF) {
6528            $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
6529            !!!cp ('i3');
6530          } elsif ($self->{next_char} == 0x0000) { # NULL
6531            !!!cp ('i4');
6532            !!!parse-error (type => 'NULL');
6533            $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
6534          }
6535        };
6536        $p->{prev_char} = [-1, -1, -1];
6537        $p->{next_char} = -1;
6538            
6539      my $nt = $child->node_type;      my $ponerror = $onerror || sub {
6540      if ($nt == 1) { # Element        my (%opt) = @_;
6541        my $tag_name = lc $child->tag_name; ## ISSUE: Definition of "lowercase"        warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";
6542        $s .= '<' . $tag_name;      };
6543        $p->{parse_error} = sub {
6544        ## ISSUE: Non-html elements        $ponerror->(@_, line => $line, column => $column);
6545        };
6546        my @attrs = @{$child->attributes}; # sort order MUST be stable      
6547        for my $attr (@attrs) { # order is implementation dependent      $p->_initialize_tokenizer;
6548          my $attr_name = lc $attr->name; ## ISSUE: Definition of "lowercase"      $p->_initialize_tree_constructor;
6549          $s .= ' ' . $attr_name . '="';  
6550          my $attr_value = $attr->value;      ## Step 2
6551          ## escape      my $node_ln = $node->manakai_local_name;
6552          $attr_value =~ s/&/&amp;/g;      $p->{content_model} = {
6553          $attr_value =~ s/</&lt;/g;        title => RCDATA_CONTENT_MODEL,
6554          $attr_value =~ s/>/&gt;/g;        textarea => RCDATA_CONTENT_MODEL,
6555          $attr_value =~ s/"/&quot;/g;        style => CDATA_CONTENT_MODEL,
6556          $s .= $attr_value . '"';        script => CDATA_CONTENT_MODEL,
6557          xmp => CDATA_CONTENT_MODEL,
6558          iframe => CDATA_CONTENT_MODEL,
6559          noembed => CDATA_CONTENT_MODEL,
6560          noframes => CDATA_CONTENT_MODEL,
6561          noscript => CDATA_CONTENT_MODEL,
6562          plaintext => PLAINTEXT_CONTENT_MODEL,
6563        }->{$node_ln};
6564        $p->{content_model} = PCDATA_CONTENT_MODEL
6565            unless defined $p->{content_model};
6566            ## ISSUE: What is "the name of the element"? local name?
6567    
6568        $p->{inner_html_node} = [$node, $node_ln];
6569    
6570        ## Step 3
6571        my $root = $doc->create_element_ns
6572          ('http://www.w3.org/1999/xhtml', [undef, 'html']);
6573    
6574        ## Step 4 # MUST
6575        $doc->append_child ($root);
6576    
6577        ## Step 5 # MUST
6578        push @{$p->{open_elements}}, [$root, 'html'];
6579    
6580        undef $p->{head_element};
6581    
6582        ## Step 6 # MUST
6583        $p->_reset_insertion_mode;
6584    
6585        ## Step 7 # MUST
6586        my $anode = $node;
6587        AN: while (defined $anode) {
6588          if ($anode->node_type == 1) {
6589            my $nsuri = $anode->namespace_uri;
6590            if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {
6591              if ($anode->manakai_local_name eq 'form') {
6592                !!!cp ('i5');
6593                $p->{form_element} = $anode;
6594                last AN;
6595              }
6596            }
6597        }        }
6598        $s .= '>';        $anode = $anode->parent_node;
6599              } # AN
6600        next C if {      
6601          area => 1, base => 1, basefont => 1, bgsound => 1,      ## Step 9 # MUST
6602          br => 1, col => 1, embed => 1, frame => 1, hr => 1,      {
6603          img => 1, input => 1, link => 1, meta => 1, param => 1,        my $self = $p;
6604          spacer => 1, wbr => 1,        !!!next-token;
       }->{$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;  
6605      }      }
6606      ## ISSUE: This code does not support PIs.      $p->_tree_construction_main;
6607    } # C  
6608          ## Step 10 # MUST
6609    ## Step 3      my @cn = @{$node->child_nodes};
6610    return \$s;      for (@cn) {
6611  } # get_inner_html        $node->remove_child ($_);
6612        }
6613        ## ISSUE: mutation events? read-only?
6614    
6615        ## Step 11 # MUST
6616        @cn = @{$root->child_nodes};
6617        for (@cn) {
6618          $this_doc->adopt_node ($_);
6619          $node->append_child ($_);
6620        }
6621        ## ISSUE: mutation events?
6622    
6623        $p->_terminate_tree_constructor;
6624      } else {
6625        die "$0: |set_inner_html| is not defined for node of type $nt";
6626      }
6627    } # set_inner_html
6628    
6629    } # tree construction stage
6630    
6631    package Whatpm::HTML::RestartParser;
6632    push our @ISA, 'Error';
6633    
6634  1;  1;
6635  # $Date$  # $Date$

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.106

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24