/[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.35 by wakaba, Mon Jul 16 03:21:04 2007 UTC revision 1.82 by wakaba, Wed Mar 5 02:55:08 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  ## ISSUE:  ## ISSUE:
7  ## var doc = implementation.createDocument (null, null, null);  ## var doc = implementation.createDocument (null, null, null);
8  ## doc.write ('');  ## doc.write ('');
9  ## alert (doc.compatMode);  ## alert (doc.compatMode);
10    
11  ## ISSUE: HTML5 revision 967 says that the encoding layer MUST NOT  ## TODO: Control charcters and noncharacters are not allowed (HTML5 revision 1263)
12  ## strip BOM and the HTML layer MUST ignore it.  Whether we can do it  ## TODO: 1252 parse error (revision 1264)
13  ## is not yet clear.  ## TODO: 8859-11 = 874 (revision 1271)
 ## "{U+FEFF}..." in UTF-16BE/UTF-16LE is three or four characters?  
 ## "{U+FEFF}..." in GB18030?  
14    
15  my $permitted_slash_tag_name = {  my $permitted_slash_tag_name = {
16    base => 1,    base => 1,
# Line 19  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 84  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    ## 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    
179    my $i = 0;    my $i = 0;
180    my $line = 1;    my $line = 1;
181    my $column = 0;    my $column = 0;
182    $self->{set_next_input_character} = sub {    $self->{set_next_char} = sub {
183      my $self = shift;      my $self = shift;
184    
185      pop @{$self->{prev_input_character}};      pop @{$self->{prev_char}};
186      unshift @{$self->{prev_input_character}}, $self->{next_input_character};      unshift @{$self->{prev_char}}, $self->{next_char};
187    
188      $self->{next_input_character} = -1 and return if $i >= length $$s;      $self->{next_char} = -1 and return if $i >= length $$s;
189      $self->{next_input_character} = ord substr $$s, $i++, 1;      $self->{next_char} = ord substr $$s, $i++, 1;
190      $column++;      $column++;
191            
192      if ($self->{next_input_character} == 0x000A) { # LF      if ($self->{next_char} == 0x000A) { # LF
193        $line++;        $line++;
194        $column = 0;        $column = 0;
195      } elsif ($self->{next_input_character} == 0x000D) { # CR      } elsif ($self->{next_char} == 0x000D) { # CR
196        $i++ if substr ($$s, $i, 1) eq "\x0A";        $i++ if substr ($$s, $i, 1) eq "\x0A";
197        $self->{next_input_character} = 0x000A; # LF # MUST        $self->{next_char} = 0x000A; # LF # MUST
198        $line++;        $line++;
199        $column = 0;        $column = 0;
200      } elsif ($self->{next_input_character} > 0x10FFFF) {      } elsif ($self->{next_char} > 0x10FFFF) {
201        $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
202      } elsif ($self->{next_input_character} == 0x0000) { # NULL      } elsif ($self->{next_char} == 0x0000) { # NULL
203        !!!parse-error (type => 'NULL');        !!!parse-error (type => 'NULL');
204        $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
205      }      }
206    };    };
207    $self->{prev_input_character} = [-1, -1, -1];    $self->{prev_char} = [-1, -1, -1];
208    $self->{next_input_character} = -1;    $self->{next_char} = -1;
209    
210    my $onerror = $_[2] || sub {    my $onerror = $_[2] || sub {
211      my (%opt) = @_;      my (%opt) = @_;
# Line 141  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    
307    sub AFTER_HTML_BODY_IM () { AFTER_HTML_IMS | BODY_AFTER_IMS }
308    sub AFTER_HTML_FRAMESET_IM () { AFTER_HTML_IMS | FRAME_IMS }
309    sub IN_HEAD_IM () { HEAD_IMS | 0b00 }
310    sub IN_HEAD_NOSCRIPT_IM () { HEAD_IMS | 0b01 }
311    sub AFTER_HEAD_IM () { HEAD_IMS | 0b10 }
312    sub BEFORE_HEAD_IM () { HEAD_IMS | 0b11 }
313    sub IN_BODY_IM () { BODY_IMS }
314    sub IN_CELL_IM () { BODY_IMS | BODY_TABLE_IMS | 0b01 }
315    sub IN_CAPTION_IM () { BODY_IMS | BODY_TABLE_IMS | 0b10 }
316    sub IN_ROW_IM () { TABLE_IMS | ROW_IMS | 0b01 }
317    sub IN_TABLE_BODY_IM () { TABLE_IMS | ROW_IMS | 0b10 }
318    sub IN_TABLE_IM () { TABLE_IMS }
319    sub AFTER_BODY_IM () { BODY_AFTER_IMS }
320    sub IN_FRAMESET_IM () { FRAME_IMS | 0b01 }
321    sub AFTER_FRAMESET_IM () { FRAME_IMS | 0b10 }
322    sub IN_SELECT_IM () { 0b01 }
323    sub IN_COLUMN_GROUP_IM () { 0b10 }
324    
325  ## Implementations MUST act as if state machine in the spec  ## Implementations MUST act as if state machine in the spec
326    
327  sub _initialize_tokenizer ($) {  sub _initialize_tokenizer ($) {
328    my $self = shift;    my $self = shift;
329    $self->{state} = 'data'; # MUST    $self->{state} = DATA_STATE; # MUST
330    $self->{content_model_flag} = 'PCDATA'; # be    $self->{content_model} = PCDATA_CONTENT_MODEL; # be
331    undef $self->{current_token}; # start tag, end tag, comment, or DOCTYPE    undef $self->{current_token}; # start tag, end tag, comment, or DOCTYPE
332    undef $self->{current_attribute};    undef $self->{current_attribute};
333    undef $self->{last_emitted_start_tag_name};    undef $self->{last_emitted_start_tag_name};
334    undef $self->{last_attribute_value_state};    undef $self->{last_attribute_value_state};
335    $self->{char} = [];    $self->{char} = [];
336    # $self->{next_input_character}    # $self->{next_char}
337    !!!next-input-character;    !!!next-input-character;
338    $self->{token} = [];    $self->{token} = [];
339    # $self->{escape}    # $self->{escape}
340  } # _initialize_tokenizer  } # _initialize_tokenizer
341    
342  ## A token has:  ## A token has:
343  ##   ->{type} eq 'DOCTYPE', 'start tag', 'end tag', 'comment',  ##   ->{type} == DOCTYPE_TOKEN, START_TAG_TOKEN, END_TAG_TOKEN, COMMENT_TOKEN,
344  ##       'character', or 'end-of-file'  ##       CHARACTER_TOKEN, or END_OF_FILE_TOKEN
345  ##   ->{name} (DOCTYPE, start tag (tag name), end tag (tag name))  ##   ->{name} (DOCTYPE_TOKEN)
346  ##   ->{public_identifier} (DOCTYPE)  ##   ->{tag_name} (START_TAG_TOKEN, END_TAG_TOKEN)
347  ##   ->{system_identifier} (DOCTYPE)  ##   ->{public_identifier} (DOCTYPE_TOKEN)
348  ##   ->{correct} == 1 or 0 (DOCTYPE)  ##   ->{system_identifier} (DOCTYPE_TOKEN)
349  ##   ->{attributes} isa HASH (start tag, end tag)  ##   ->{quirks} == 1 or 0 (DOCTYPE_TOKEN): "force-quirks" flag
350  ##   ->{data} (comment, character)  ##   ->{attributes} isa HASH (START_TAG_TOKEN, END_TAG_TOKEN)
351    ##        ->{name}
352    ##        ->{value}
353    ##        ->{has_reference} == 1 or 0
354    ##   ->{data} (COMMENT_TOKEN, CHARACTER_TOKEN)
355    
356  ## Emitted token MUST immediately be handled by the tree construction state.  ## Emitted token MUST immediately be handled by the tree construction state.
357    
# Line 185  sub _initialize_tokenizer ($) { Line 361  sub _initialize_tokenizer ($) {
361  ## has completed loading.  If one has, then it MUST be executed  ## has completed loading.  If one has, then it MUST be executed
362  ## and removed from the list.  ## and removed from the list.
363    
364    ## NOTE: HTML5 "Writing HTML documents" section, applied to
365    ## documents and not to user agents and conformance checkers,
366    ## contains some requirements that are not detected by the
367    ## parsing algorithm:
368    ## - Some requirements on character encoding declarations. ## TODO
369    ## - "Elements MUST NOT contain content that their content model disallows."
370    ##   ... Some are parse error, some are not (will be reported by c.c.).
371    ## - Polytheistic slash SHOULD NOT be used. (Applied only to atheists.) ## TODO
372    ## - Text (in elements, attributes, and comments) SHOULD NOT contain
373    ##   control characters other than space characters. ## TODO: (what is control character? C0, C1 and DEL?  Unicode control character?)
374    
375    ## TODO: HTML5 poses authors two SHOULD-level requirements that cannot
376    ## be detected by the HTML5 parsing algorithm:
377    ## - Text,
378    
379  sub _get_next_token ($) {  sub _get_next_token ($) {
380    my $self = shift;    my $self = shift;
381    if (@{$self->{token}}) {    if (@{$self->{token}}) {
# Line 192  sub _get_next_token ($) { Line 383  sub _get_next_token ($) {
383    }    }
384    
385    A: {    A: {
386      if ($self->{state} eq 'data') {      if ($self->{state} == DATA_STATE) {
387        if ($self->{next_input_character} == 0x0026) { # &        if ($self->{next_char} == 0x0026) { # &
388          if ($self->{content_model_flag} eq 'PCDATA' or          if ($self->{content_model} & CM_ENTITY and # PCDATA | RCDATA
389              $self->{content_model_flag} eq 'RCDATA') {              not $self->{escape}) {
390            $self->{state} = 'entity data';            !!!cp (1);
391              $self->{state} = ENTITY_DATA_STATE;
392            !!!next-input-character;            !!!next-input-character;
393            redo A;            redo A;
394          } else {          } else {
395              !!!cp (2);
396            #            #
397          }          }
398        } elsif ($self->{next_input_character} == 0x002D) { # -        } elsif ($self->{next_char} == 0x002D) { # -
399          if ($self->{content_model_flag} eq 'RCDATA' or          if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
             $self->{content_model_flag} eq 'CDATA') {  
400            unless ($self->{escape}) {            unless ($self->{escape}) {
401              if ($self->{prev_input_character}->[0] == 0x002D and # -              if ($self->{prev_char}->[0] == 0x002D and # -
402                  $self->{prev_input_character}->[1] == 0x0021 and # !                  $self->{prev_char}->[1] == 0x0021 and # !
403                  $self->{prev_input_character}->[2] == 0x003C) { # <                  $self->{prev_char}->[2] == 0x003C) { # <
404                  !!!cp (3);
405                $self->{escape} = 1;                $self->{escape} = 1;
406                } else {
407                  !!!cp (4);
408              }              }
409              } else {
410                !!!cp (5);
411            }            }
412          }          }
413                    
414          #          #
415        } elsif ($self->{next_input_character} == 0x003C) { # <        } elsif ($self->{next_char} == 0x003C) { # <
416          if ($self->{content_model_flag} eq 'PCDATA' or          if ($self->{content_model} & CM_FULL_MARKUP or # PCDATA
417              (($self->{content_model_flag} eq 'CDATA' or              (($self->{content_model} & CM_LIMITED_MARKUP) and # CDATA | RCDATA
               $self->{content_model_flag} eq 'RCDATA') and  
418               not $self->{escape})) {               not $self->{escape})) {
419            $self->{state} = 'tag open';            !!!cp (6);
420              $self->{state} = TAG_OPEN_STATE;
421            !!!next-input-character;            !!!next-input-character;
422            redo A;            redo A;
423          } else {          } else {
424              !!!cp (7);
425            #            #
426          }          }
427        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
428          if ($self->{escape} and          if ($self->{escape} and
429              ($self->{content_model_flag} eq 'RCDATA' or              ($self->{content_model} & CM_LIMITED_MARKUP)) { # RCDATA | CDATA
430               $self->{content_model_flag} eq 'CDATA')) {            if ($self->{prev_char}->[0] == 0x002D and # -
431            if ($self->{prev_input_character}->[0] == 0x002D and # -                $self->{prev_char}->[1] == 0x002D) { # -
432                $self->{prev_input_character}->[1] == 0x002D) { # -              !!!cp (8);
433              delete $self->{escape};              delete $self->{escape};
434              } else {
435                !!!cp (9);
436            }            }
437            } else {
438              !!!cp (10);
439          }          }
440                    
441          #          #
442        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
443          !!!emit ({type => 'end-of-file'});          !!!cp (11);
444            !!!emit ({type => END_OF_FILE_TOKEN});
445          last A; ## TODO: ok?          last A; ## TODO: ok?
446          } else {
447            !!!cp (12);
448        }        }
449        # Anything else        # Anything else
450        my $token = {type => 'character',        my $token = {type => CHARACTER_TOKEN,
451                     data => chr $self->{next_input_character}};                     data => chr $self->{next_char}};
452        ## Stay in the data state        ## Stay in the data state
453        !!!next-input-character;        !!!next-input-character;
454    
455        !!!emit ($token);        !!!emit ($token);
456    
457        redo A;        redo A;
458      } elsif ($self->{state} eq 'entity data') {      } elsif ($self->{state} == ENTITY_DATA_STATE) {
459        ## (cannot happen in CDATA state)        ## (cannot happen in CDATA state)
460                
461        my $token = $self->_tokenize_attempt_to_consume_an_entity (0);        my $token = $self->_tokenize_attempt_to_consume_an_entity (0, -1);
462    
463        $self->{state} = 'data';        $self->{state} = DATA_STATE;
464        # next-input-character is already done        # next-input-character is already done
465    
466        unless (defined $token) {        unless (defined $token) {
467          !!!emit ({type => 'character', data => '&'});          !!!cp (13);
468            !!!emit ({type => CHARACTER_TOKEN, data => '&'});
469        } else {        } else {
470            !!!cp (14);
471          !!!emit ($token);          !!!emit ($token);
472        }        }
473    
474        redo A;        redo A;
475      } elsif ($self->{state} eq 'tag open') {      } elsif ($self->{state} == TAG_OPEN_STATE) {
476        if ($self->{content_model_flag} eq 'RCDATA' or        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
477            $self->{content_model_flag} eq 'CDATA') {          if ($self->{next_char} == 0x002F) { # /
478          if ($self->{next_input_character} == 0x002F) { # /            !!!cp (15);
479            !!!next-input-character;            !!!next-input-character;
480            $self->{state} = 'close tag open';            $self->{state} = CLOSE_TAG_OPEN_STATE;
481            redo A;            redo A;
482          } else {          } else {
483              !!!cp (16);
484            ## reconsume            ## reconsume
485            $self->{state} = 'data';            $self->{state} = DATA_STATE;
486    
487            !!!emit ({type => 'character', data => '<'});            !!!emit ({type => CHARACTER_TOKEN, data => '<'});
488    
489            redo A;            redo A;
490          }          }
491        } elsif ($self->{content_model_flag} eq 'PCDATA') {        } elsif ($self->{content_model} & CM_FULL_MARKUP) { # PCDATA
492          if ($self->{next_input_character} == 0x0021) { # !          if ($self->{next_char} == 0x0021) { # !
493            $self->{state} = 'markup declaration open';            !!!cp (17);
494              $self->{state} = MARKUP_DECLARATION_OPEN_STATE;
495            !!!next-input-character;            !!!next-input-character;
496            redo A;            redo A;
497          } elsif ($self->{next_input_character} == 0x002F) { # /          } elsif ($self->{next_char} == 0x002F) { # /
498            $self->{state} = 'close tag open';            !!!cp (18);
499              $self->{state} = CLOSE_TAG_OPEN_STATE;
500            !!!next-input-character;            !!!next-input-character;
501            redo A;            redo A;
502          } elsif (0x0041 <= $self->{next_input_character} and          } elsif (0x0041 <= $self->{next_char} and
503                   $self->{next_input_character} <= 0x005A) { # A..Z                   $self->{next_char} <= 0x005A) { # A..Z
504              !!!cp (19);
505            $self->{current_token}            $self->{current_token}
506              = {type => 'start tag',              = {type => START_TAG_TOKEN,
507                 tag_name => chr ($self->{next_input_character} + 0x0020)};                 tag_name => chr ($self->{next_char} + 0x0020)};
508            $self->{state} = 'tag name';            $self->{state} = TAG_NAME_STATE;
509            !!!next-input-character;            !!!next-input-character;
510            redo A;            redo A;
511          } elsif (0x0061 <= $self->{next_input_character} and          } elsif (0x0061 <= $self->{next_char} and
512                   $self->{next_input_character} <= 0x007A) { # a..z                   $self->{next_char} <= 0x007A) { # a..z
513            $self->{current_token} = {type => 'start tag',            !!!cp (20);
514                              tag_name => chr ($self->{next_input_character})};            $self->{current_token} = {type => START_TAG_TOKEN,
515            $self->{state} = 'tag name';                              tag_name => chr ($self->{next_char})};
516              $self->{state} = TAG_NAME_STATE;
517            !!!next-input-character;            !!!next-input-character;
518            redo A;            redo A;
519          } elsif ($self->{next_input_character} == 0x003E) { # >          } elsif ($self->{next_char} == 0x003E) { # >
520              !!!cp (21);
521            !!!parse-error (type => 'empty start tag');            !!!parse-error (type => 'empty start tag');
522            $self->{state} = 'data';            $self->{state} = DATA_STATE;
523            !!!next-input-character;            !!!next-input-character;
524    
525            !!!emit ({type => 'character', data => '<>'});            !!!emit ({type => CHARACTER_TOKEN, data => '<>'});
526    
527            redo A;            redo A;
528          } elsif ($self->{next_input_character} == 0x003F) { # ?          } elsif ($self->{next_char} == 0x003F) { # ?
529              !!!cp (22);
530            !!!parse-error (type => 'pio');            !!!parse-error (type => 'pio');
531            $self->{state} = 'bogus comment';            $self->{state} = BOGUS_COMMENT_STATE;
532            ## $self->{next_input_character} is intentionally left as is            ## $self->{next_char} is intentionally left as is
533            redo A;            redo A;
534          } else {          } else {
535              !!!cp (23);
536            !!!parse-error (type => 'bare stago');            !!!parse-error (type => 'bare stago');
537            $self->{state} = 'data';            $self->{state} = DATA_STATE;
538            ## reconsume            ## reconsume
539    
540            !!!emit ({type => 'character', data => '<'});            !!!emit ({type => CHARACTER_TOKEN, data => '<'});
541    
542            redo A;            redo A;
543          }          }
544        } else {        } else {
545          die "$0: $self->{content_model_flag}: Unknown content model flag";          die "$0: $self->{content_model} in tag open";
546        }        }
547      } elsif ($self->{state} eq 'close tag open') {      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {
548        if ($self->{content_model_flag} eq 'RCDATA' or        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
           $self->{content_model_flag} eq 'CDATA') {  
549          if (defined $self->{last_emitted_start_tag_name}) {          if (defined $self->{last_emitted_start_tag_name}) {
550            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>
551            my @next_char;            my @next_char;
552            TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) {            TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) {
553              push @next_char, $self->{next_input_character};              push @next_char, $self->{next_char};
554              my $c = ord substr ($self->{last_emitted_start_tag_name}, $i, 1);              my $c = ord substr ($self->{last_emitted_start_tag_name}, $i, 1);
555              my $C = 0x0061 <= $c && $c <= 0x007A ? $c - 0x0020 : $c;              my $C = 0x0061 <= $c && $c <= 0x007A ? $c - 0x0020 : $c;
556              if ($self->{next_input_character} == $c or $self->{next_input_character} == $C) {              if ($self->{next_char} == $c or $self->{next_char} == $C) {
557                  !!!cp (24);
558                !!!next-input-character;                !!!next-input-character;
559                next TAGNAME;                next TAGNAME;
560              } else {              } else {
561                $self->{next_input_character} = shift @next_char; # reconsume                !!!cp (25);
562                  $self->{next_char} = shift @next_char; # reconsume
563                !!!back-next-input-character (@next_char);                !!!back-next-input-character (@next_char);
564                $self->{state} = 'data';                $self->{state} = DATA_STATE;
565    
566                !!!emit ({type => 'character', data => '</'});                !!!emit ({type => CHARACTER_TOKEN, data => '</'});
567        
568                redo A;                redo A;
569              }              }
570            }            }
571            push @next_char, $self->{next_input_character};            push @next_char, $self->{next_char};
572                
573            unless ($self->{next_input_character} == 0x0009 or # HT            unless ($self->{next_char} == 0x0009 or # HT
574                    $self->{next_input_character} == 0x000A or # LF                    $self->{next_char} == 0x000A or # LF
575                    $self->{next_input_character} == 0x000B or # VT                    $self->{next_char} == 0x000B or # VT
576                    $self->{next_input_character} == 0x000C or # FF                    $self->{next_char} == 0x000C or # FF
577                    $self->{next_input_character} == 0x0020 or # SP                    $self->{next_char} == 0x0020 or # SP
578                    $self->{next_input_character} == 0x003E or # >                    $self->{next_char} == 0x003E or # >
579                    $self->{next_input_character} == 0x002F or # /                    $self->{next_char} == 0x002F or # /
580                    $self->{next_input_character} == -1) {                    $self->{next_char} == -1) {
581              $self->{next_input_character} = shift @next_char; # reconsume              !!!cp (26);
582                $self->{next_char} = shift @next_char; # reconsume
583              !!!back-next-input-character (@next_char);              !!!back-next-input-character (@next_char);
584              $self->{state} = 'data';              $self->{state} = DATA_STATE;
585              !!!emit ({type => 'character', data => '</'});              !!!emit ({type => CHARACTER_TOKEN, data => '</'});
586              redo A;              redo A;
587            } else {            } else {
588              $self->{next_input_character} = shift @next_char;              !!!cp (27);
589                $self->{next_char} = shift @next_char;
590              !!!back-next-input-character (@next_char);              !!!back-next-input-character (@next_char);
591              # and consume...              # and consume...
592            }            }
593          } else {          } else {
594            ## No start tag token has ever been emitted            ## No start tag token has ever been emitted
595              !!!cp (28);
596            # next-input-character is already done            # next-input-character is already done
597            $self->{state} = 'data';            $self->{state} = DATA_STATE;
598            !!!emit ({type => 'character', data => '</'});            !!!emit ({type => CHARACTER_TOKEN, data => '</'});
599            redo A;            redo A;
600          }          }
601        }        }
602                
603        if (0x0041 <= $self->{next_input_character} and        if (0x0041 <= $self->{next_char} and
604            $self->{next_input_character} <= 0x005A) { # A..Z            $self->{next_char} <= 0x005A) { # A..Z
605          $self->{current_token} = {type => 'end tag',          !!!cp (29);
606                            tag_name => chr ($self->{next_input_character} + 0x0020)};          $self->{current_token} = {type => END_TAG_TOKEN,
607          $self->{state} = 'tag name';                            tag_name => chr ($self->{next_char} + 0x0020)};
608          !!!next-input-character;          $self->{state} = TAG_NAME_STATE;
609          redo A;          !!!next-input-character;
610        } elsif (0x0061 <= $self->{next_input_character} and          redo A;
611                 $self->{next_input_character} <= 0x007A) { # a..z        } elsif (0x0061 <= $self->{next_char} and
612          $self->{current_token} = {type => 'end tag',                 $self->{next_char} <= 0x007A) { # a..z
613                            tag_name => chr ($self->{next_input_character})};          !!!cp (30);
614          $self->{state} = 'tag name';          $self->{current_token} = {type => END_TAG_TOKEN,
615                              tag_name => chr ($self->{next_char})};
616            $self->{state} = TAG_NAME_STATE;
617          !!!next-input-character;          !!!next-input-character;
618          redo A;          redo A;
619        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
620            !!!cp (31);
621          !!!parse-error (type => 'empty end tag');          !!!parse-error (type => 'empty end tag');
622          $self->{state} = 'data';          $self->{state} = DATA_STATE;
623          !!!next-input-character;          !!!next-input-character;
624          redo A;          redo A;
625        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
626            !!!cp (32);
627          !!!parse-error (type => 'bare etago');          !!!parse-error (type => 'bare etago');
628          $self->{state} = 'data';          $self->{state} = DATA_STATE;
629          # reconsume          # reconsume
630    
631          !!!emit ({type => 'character', data => '</'});          !!!emit ({type => CHARACTER_TOKEN, data => '</'});
632    
633          redo A;          redo A;
634        } else {        } else {
635            !!!cp (33);
636          !!!parse-error (type => 'bogus end tag');          !!!parse-error (type => 'bogus end tag');
637          $self->{state} = 'bogus comment';          $self->{state} = BOGUS_COMMENT_STATE;
638          ## $self->{next_input_character} is intentionally left as is          ## $self->{next_char} is intentionally left as is
639          redo A;          redo A;
640        }        }
641      } elsif ($self->{state} eq 'tag name') {      } elsif ($self->{state} == TAG_NAME_STATE) {
642        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
643            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
644            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
645            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
646            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
647          $self->{state} = 'before attribute name';          !!!cp (34);
648          !!!next-input-character;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
649          redo A;          !!!next-input-character;
650        } elsif ($self->{next_input_character} == 0x003E) { # >          redo A;
651          if ($self->{current_token}->{type} eq 'start tag') {        } elsif ($self->{next_char} == 0x003E) { # >
652            if ($self->{current_token}->{type} == START_TAG_TOKEN) {
653              !!!cp (35);
654            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
655                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
656            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
657          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
658            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
659            if ($self->{current_token}->{attributes}) {            #if ($self->{current_token}->{attributes}) {
660              !!!parse-error (type => 'end tag attribute');            #  ## NOTE: This should never be reached.
661            }            #  !!! cp (36);
662              #  !!! parse-error (type => 'end tag attribute');
663              #} else {
664                !!!cp (37);
665              #}
666          } else {          } else {
667            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
668          }          }
669          $self->{state} = 'data';          $self->{state} = DATA_STATE;
670          !!!next-input-character;          !!!next-input-character;
671    
672          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
673    
674          redo A;          redo A;
675        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
676                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
677          $self->{current_token}->{tag_name} .= chr ($self->{next_input_character} + 0x0020);          !!!cp (38);
678            $self->{current_token}->{tag_name} .= chr ($self->{next_char} + 0x0020);
679            # start tag or end tag            # start tag or end tag
680          ## Stay in this state          ## Stay in this state
681          !!!next-input-character;          !!!next-input-character;
682          redo A;          redo A;
683        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
684          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
685          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
686              !!!cp (39);
687            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
688                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
689            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
690          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
691            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
692            if ($self->{current_token}->{attributes}) {            #if ($self->{current_token}->{attributes}) {
693              !!!parse-error (type => 'end tag attribute');            #  ## NOTE: This state should never be reached.
694            }            #  !!! cp (40);
695              #  !!! parse-error (type => 'end tag attribute');
696              #} else {
697                !!!cp (41);
698              #}
699          } else {          } else {
700            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
701          }          }
702          $self->{state} = 'data';          $self->{state} = DATA_STATE;
703          # reconsume          # reconsume
704    
705          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
706    
707          redo A;          redo A;
708        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
709          !!!next-input-character;          !!!next-input-character;
710          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
711              $self->{current_token}->{type} eq 'start tag' and              $self->{current_token}->{type} == START_TAG_TOKEN and
712              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
713            # permitted slash            # permitted slash
714              !!!cp (42);
715            #            #
716          } else {          } else {
717              !!!cp (43);
718            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
719          }          }
720          $self->{state} = 'before attribute name';          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
721          # next-input-character is already done          # next-input-character is already done
722          redo A;          redo A;
723        } else {        } else {
724          $self->{current_token}->{tag_name} .= chr $self->{next_input_character};          !!!cp (44);
725            $self->{current_token}->{tag_name} .= chr $self->{next_char};
726            # start tag or end tag            # start tag or end tag
727          ## Stay in the state          ## Stay in the state
728          !!!next-input-character;          !!!next-input-character;
729          redo A;          redo A;
730        }        }
731      } elsif ($self->{state} eq 'before attribute name') {      } elsif ($self->{state} == BEFORE_ATTRIBUTE_NAME_STATE) {
732        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
733            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
734            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
735            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
736            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
737            !!!cp (45);
738          ## Stay in the state          ## Stay in the state
739          !!!next-input-character;          !!!next-input-character;
740          redo A;          redo A;
741        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
742          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
743              !!!cp (46);
744            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
745                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
746            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
747          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
748            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
749            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
750                !!!cp (47);
751              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
752              } else {
753                !!!cp (48);
754            }            }
755          } else {          } else {
756            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
757          }          }
758          $self->{state} = 'data';          $self->{state} = DATA_STATE;
759          !!!next-input-character;          !!!next-input-character;
760    
761          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
762    
763          redo A;          redo A;
764        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
765                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
766          $self->{current_attribute} = {name => chr ($self->{next_input_character} + 0x0020),          !!!cp (49);
767            $self->{current_attribute} = {name => chr ($self->{next_char} + 0x0020),
768                                value => ''};                                value => ''};
769          $self->{state} = 'attribute name';          $self->{state} = ATTRIBUTE_NAME_STATE;
770          !!!next-input-character;          !!!next-input-character;
771          redo A;          redo A;
772        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
773          !!!next-input-character;          !!!next-input-character;
774          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
775              $self->{current_token}->{type} eq 'start tag' and              $self->{current_token}->{type} == START_TAG_TOKEN and
776              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
777            # permitted slash            # permitted slash
778              !!!cp (50);
779            #            #
780          } else {          } else {
781              !!!cp (51);
782            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
783          }          }
784          ## Stay in the state          ## Stay in the state
785          # next-input-character is already done          # next-input-character is already done
786          redo A;          redo A;
787        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
788          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
789          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
790              !!!cp (52);
791            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
792                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
793            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
794          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
795            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
796            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
797                !!!cp (53);
798              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
799              } else {
800                !!!cp (54);
801            }            }
802          } else {          } else {
803            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
804          }          }
805          $self->{state} = 'data';          $self->{state} = DATA_STATE;
806          # reconsume          # reconsume
807    
808          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
809    
810          redo A;          redo A;
811        } else {        } else {
812          $self->{current_attribute} = {name => chr ($self->{next_input_character}),          if ({
813                 0x0022 => 1, # "
814                 0x0027 => 1, # '
815                 0x003D => 1, # =
816                }->{$self->{next_char}}) {
817              !!!cp (55);
818              !!!parse-error (type => 'bad attribute name');
819            } else {
820              !!!cp (56);
821            }
822            $self->{current_attribute} = {name => chr ($self->{next_char}),
823                                value => ''};                                value => ''};
824          $self->{state} = 'attribute name';          $self->{state} = ATTRIBUTE_NAME_STATE;
825          !!!next-input-character;          !!!next-input-character;
826          redo A;          redo A;
827        }        }
828      } elsif ($self->{state} eq 'attribute name') {      } elsif ($self->{state} == ATTRIBUTE_NAME_STATE) {
829        my $before_leave = sub {        my $before_leave = sub {
830          if (exists $self->{current_token}->{attributes} # start tag or end tag          if (exists $self->{current_token}->{attributes} # start tag or end tag
831              ->{$self->{current_attribute}->{name}}) { # MUST              ->{$self->{current_attribute}->{name}}) { # MUST
832            !!!parse-error (type => 'dupulicate attribute');            !!!cp (57);
833              !!!parse-error (type => 'duplicate attribute:'.$self->{current_attribute}->{name});
834            ## Discard $self->{current_attribute} # MUST            ## Discard $self->{current_attribute} # MUST
835          } else {          } else {
836              !!!cp (58);
837            $self->{current_token}->{attributes}->{$self->{current_attribute}->{name}}            $self->{current_token}->{attributes}->{$self->{current_attribute}->{name}}
838              = $self->{current_attribute};              = $self->{current_attribute};
839          }          }
840        }; # $before_leave        }; # $before_leave
841    
842        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
843            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
844            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
845            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
846            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
847            !!!cp (59);
848          $before_leave->();          $before_leave->();
849          $self->{state} = 'after attribute name';          $self->{state} = AFTER_ATTRIBUTE_NAME_STATE;
850          !!!next-input-character;          !!!next-input-character;
851          redo A;          redo A;
852        } elsif ($self->{next_input_character} == 0x003D) { # =        } elsif ($self->{next_char} == 0x003D) { # =
853            !!!cp (60);
854          $before_leave->();          $before_leave->();
855          $self->{state} = 'before attribute value';          $self->{state} = BEFORE_ATTRIBUTE_VALUE_STATE;
856          !!!next-input-character;          !!!next-input-character;
857          redo A;          redo A;
858        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
859          $before_leave->();          $before_leave->();
860          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
861              !!!cp (61);
862            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
863                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
864            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
865          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
866            $self->{content_model_flag} = 'PCDATA'; # MUST            !!!cp (62);
867              $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
868            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
869              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
870            }            }
871          } else {          } else {
872            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
873          }          }
874          $self->{state} = 'data';          $self->{state} = DATA_STATE;
875          !!!next-input-character;          !!!next-input-character;
876    
877          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
878    
879          redo A;          redo A;
880        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
881                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
882          $self->{current_attribute}->{name} .= chr ($self->{next_input_character} + 0x0020);          !!!cp (63);
883            $self->{current_attribute}->{name} .= chr ($self->{next_char} + 0x0020);
884          ## Stay in the state          ## Stay in the state
885          !!!next-input-character;          !!!next-input-character;
886          redo A;          redo A;
887        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
888          $before_leave->();          $before_leave->();
889          !!!next-input-character;          !!!next-input-character;
890          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
891              $self->{current_token}->{type} eq 'start tag' and              $self->{current_token}->{type} == START_TAG_TOKEN and
892              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
893            # permitted slash            # permitted slash
894              !!!cp (64);
895            #            #
896          } else {          } else {
897              !!!cp (65);
898            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
899          }          }
900          $self->{state} = 'before attribute name';          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
901          # next-input-character is already done          # next-input-character is already done
902          redo A;          redo A;
903        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
904          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
905          $before_leave->();          $before_leave->();
906          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
907              !!!cp (66);
908            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
909                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
910            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
911          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
912            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
913            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
914                !!!cp (67);
915              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
916              } else {
917                ## NOTE: This state should never be reached.
918                !!!cp (68);
919            }            }
920          } else {          } else {
921            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
922          }          }
923          $self->{state} = 'data';          $self->{state} = DATA_STATE;
924          # reconsume          # reconsume
925    
926          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
927    
928          redo A;          redo A;
929        } else {        } else {
930          $self->{current_attribute}->{name} .= chr ($self->{next_input_character});          if ($self->{next_char} == 0x0022 or # "
931                $self->{next_char} == 0x0027) { # '
932              !!!cp (69);
933              !!!parse-error (type => 'bad attribute name');
934            } else {
935              !!!cp (70);
936            }
937            $self->{current_attribute}->{name} .= chr ($self->{next_char});
938          ## Stay in the state          ## Stay in the state
939          !!!next-input-character;          !!!next-input-character;
940          redo A;          redo A;
941        }        }
942      } elsif ($self->{state} eq 'after attribute name') {      } elsif ($self->{state} == AFTER_ATTRIBUTE_NAME_STATE) {
943        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
944            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
945            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
946            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
947            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
948            !!!cp (71);
949          ## Stay in the state          ## Stay in the state
950          !!!next-input-character;          !!!next-input-character;
951          redo A;          redo A;
952        } elsif ($self->{next_input_character} == 0x003D) { # =        } elsif ($self->{next_char} == 0x003D) { # =
953          $self->{state} = 'before attribute value';          !!!cp (72);
954            $self->{state} = BEFORE_ATTRIBUTE_VALUE_STATE;
955          !!!next-input-character;          !!!next-input-character;
956          redo A;          redo A;
957        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
958          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
959              !!!cp (73);
960            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
961                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
962            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
963          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
964            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
965            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
966                !!!cp (74);
967              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
968              } else {
969                ## NOTE: This state should never be reached.
970                !!!cp (75);
971            }            }
972          } else {          } else {
973            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
974          }          }
975          $self->{state} = 'data';          $self->{state} = DATA_STATE;
976          !!!next-input-character;          !!!next-input-character;
977    
978          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
979    
980          redo A;          redo A;
981        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
982                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
983          $self->{current_attribute} = {name => chr ($self->{next_input_character} + 0x0020),          !!!cp (76);
984            $self->{current_attribute} = {name => chr ($self->{next_char} + 0x0020),
985                                value => ''};                                value => ''};
986          $self->{state} = 'attribute name';          $self->{state} = ATTRIBUTE_NAME_STATE;
987          !!!next-input-character;          !!!next-input-character;
988          redo A;          redo A;
989        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
990          !!!next-input-character;          !!!next-input-character;
991          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
992              $self->{current_token}->{type} eq 'start tag' and              $self->{current_token}->{type} == START_TAG_TOKEN and
993              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
994            # permitted slash            # permitted slash
995              !!!cp (77);
996            #            #
997          } else {          } else {
998              !!!cp (78);
999            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
1000            ## TODO: Different error type for <aa / bb> than <aa/>            ## TODO: Different error type for <aa / bb> than <aa/>
1001          }          }
1002          $self->{state} = 'before attribute name';          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1003          # next-input-character is already done          # next-input-character is already done
1004          redo A;          redo A;
1005        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1006          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1007          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1008              !!!cp (79);
1009            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1010                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1011            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1012          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1013            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1014            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1015                !!!cp (80);
1016              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1017              } else {
1018                ## NOTE: This state should never be reached.
1019                !!!cp (81);
1020            }            }
1021          } else {          } else {
1022            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1023          }          }
1024          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1025          # reconsume          # reconsume
1026    
1027          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1028    
1029          redo A;          redo A;
1030        } else {        } else {
1031          $self->{current_attribute} = {name => chr ($self->{next_input_character}),          !!!cp (82);
1032            $self->{current_attribute} = {name => chr ($self->{next_char}),
1033                                value => ''};                                value => ''};
1034          $self->{state} = 'attribute name';          $self->{state} = ATTRIBUTE_NAME_STATE;
1035          !!!next-input-character;          !!!next-input-character;
1036          redo A;                  redo A;        
1037        }        }
1038      } elsif ($self->{state} eq 'before attribute value') {      } elsif ($self->{state} == BEFORE_ATTRIBUTE_VALUE_STATE) {
1039        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1040            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1041            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1042            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1043            $self->{next_input_character} == 0x0020) { # SP                  $self->{next_char} == 0x0020) { # SP      
1044            !!!cp (83);
1045          ## Stay in the state          ## Stay in the state
1046          !!!next-input-character;          !!!next-input-character;
1047          redo A;          redo A;
1048        } elsif ($self->{next_input_character} == 0x0022) { # "        } elsif ($self->{next_char} == 0x0022) { # "
1049          $self->{state} = 'attribute value (double-quoted)';          !!!cp (84);
1050            $self->{state} = ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE;
1051          !!!next-input-character;          !!!next-input-character;
1052          redo A;          redo A;
1053        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1054          $self->{state} = 'attribute value (unquoted)';          !!!cp (85);
1055            $self->{state} = ATTRIBUTE_VALUE_UNQUOTED_STATE;
1056          ## reconsume          ## reconsume
1057          redo A;          redo A;
1058        } elsif ($self->{next_input_character} == 0x0027) { # '        } elsif ($self->{next_char} == 0x0027) { # '
1059          $self->{state} = 'attribute value (single-quoted)';          !!!cp (86);
1060            $self->{state} = ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE;
1061          !!!next-input-character;          !!!next-input-character;
1062          redo A;          redo A;
1063        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1064          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1065              !!!cp (87);
1066            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1067                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1068            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1069          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1070            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1071            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1072                !!!cp (88);
1073              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1074              } else {
1075                ## NOTE: This state should never be reached.
1076                !!!cp (89);
1077            }            }
1078          } else {          } else {
1079            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1080          }          }
1081          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1082          !!!next-input-character;          !!!next-input-character;
1083    
1084          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1085    
1086          redo A;          redo A;
1087        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1088          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1089          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1090              !!!cp (90);
1091            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1092                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1093            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1094          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1095            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1096            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1097                !!!cp (91);
1098              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1099              } else {
1100                ## NOTE: This state should never be reached.
1101                !!!cp (92);
1102            }            }
1103          } else {          } else {
1104            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1105          }          }
1106          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1107          ## reconsume          ## reconsume
1108    
1109          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1110    
1111          redo A;          redo A;
1112        } else {        } else {
1113          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          if ($self->{next_char} == 0x003D) { # =
1114          $self->{state} = 'attribute value (unquoted)';            !!!cp (93);
1115              !!!parse-error (type => 'bad attribute value');
1116            } else {
1117              !!!cp (94);
1118            }
1119            $self->{current_attribute}->{value} .= chr ($self->{next_char});
1120            $self->{state} = ATTRIBUTE_VALUE_UNQUOTED_STATE;
1121          !!!next-input-character;          !!!next-input-character;
1122          redo A;          redo A;
1123        }        }
1124      } elsif ($self->{state} eq 'attribute value (double-quoted)') {      } elsif ($self->{state} == ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE) {
1125        if ($self->{next_input_character} == 0x0022) { # "        if ($self->{next_char} == 0x0022) { # "
1126          $self->{state} = 'before attribute name';          !!!cp (95);
1127            $self->{state} = AFTER_ATTRIBUTE_VALUE_QUOTED_STATE;
1128          !!!next-input-character;          !!!next-input-character;
1129          redo A;          redo A;
1130        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1131          $self->{last_attribute_value_state} = 'attribute value (double-quoted)';          !!!cp (96);
1132          $self->{state} = 'entity in attribute value';          $self->{last_attribute_value_state} = $self->{state};
1133            $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;
1134          !!!next-input-character;          !!!next-input-character;
1135          redo A;          redo A;
1136        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1137          !!!parse-error (type => 'unclosed attribute value');          !!!parse-error (type => 'unclosed attribute value');
1138          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1139              !!!cp (97);
1140            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1141                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1142            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1143          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1144            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1145            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1146                !!!cp (98);
1147              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1148              } else {
1149                ## NOTE: This state should never be reached.
1150                !!!cp (99);
1151            }            }
1152          } else {          } else {
1153            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1154          }          }
1155          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1156          ## reconsume          ## reconsume
1157    
1158          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1159    
1160          redo A;          redo A;
1161        } else {        } else {
1162          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          !!!cp (100);
1163            $self->{current_attribute}->{value} .= chr ($self->{next_char});
1164          ## Stay in the state          ## Stay in the state
1165          !!!next-input-character;          !!!next-input-character;
1166          redo A;          redo A;
1167        }        }
1168      } elsif ($self->{state} eq 'attribute value (single-quoted)') {      } elsif ($self->{state} == ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE) {
1169        if ($self->{next_input_character} == 0x0027) { # '        if ($self->{next_char} == 0x0027) { # '
1170          $self->{state} = 'before attribute name';          !!!cp (101);
1171            $self->{state} = AFTER_ATTRIBUTE_VALUE_QUOTED_STATE;
1172          !!!next-input-character;          !!!next-input-character;
1173          redo A;          redo A;
1174        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1175          $self->{last_attribute_value_state} = 'attribute value (single-quoted)';          !!!cp (102);
1176          $self->{state} = 'entity in attribute value';          $self->{last_attribute_value_state} = $self->{state};
1177            $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;
1178          !!!next-input-character;          !!!next-input-character;
1179          redo A;          redo A;
1180        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1181          !!!parse-error (type => 'unclosed attribute value');          !!!parse-error (type => 'unclosed attribute value');
1182          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1183              !!!cp (103);
1184            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1185                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1186            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1187          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1188            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1189            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1190                !!!cp (104);
1191              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1192              } else {
1193                ## NOTE: This state should never be reached.
1194                !!!cp (105);
1195            }            }
1196          } else {          } else {
1197            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1198          }          }
1199          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1200          ## reconsume          ## reconsume
1201    
1202          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1203    
1204          redo A;          redo A;
1205        } else {        } else {
1206          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          !!!cp (106);
1207            $self->{current_attribute}->{value} .= chr ($self->{next_char});
1208          ## Stay in the state          ## Stay in the state
1209          !!!next-input-character;          !!!next-input-character;
1210          redo A;          redo A;
1211        }        }
1212      } elsif ($self->{state} eq 'attribute value (unquoted)') {      } elsif ($self->{state} == ATTRIBUTE_VALUE_UNQUOTED_STATE) {
1213        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1214            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1215            $self->{next_input_character} == 0x000B or # HT            $self->{next_char} == 0x000B or # HT
1216            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1217            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1218          $self->{state} = 'before attribute name';          !!!cp (107);
1219          !!!next-input-character;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1220          redo A;          !!!next-input-character;
1221        } elsif ($self->{next_input_character} == 0x0026) { # &          redo A;
1222          $self->{last_attribute_value_state} = 'attribute value (unquoted)';        } elsif ($self->{next_char} == 0x0026) { # &
1223          $self->{state} = 'entity in attribute value';          !!!cp (108);
1224          !!!next-input-character;          $self->{last_attribute_value_state} = $self->{state};
1225          redo A;          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;
1226        } elsif ($self->{next_input_character} == 0x003E) { # >          !!!next-input-character;
1227          if ($self->{current_token}->{type} eq 'start tag') {          redo A;
1228          } elsif ($self->{next_char} == 0x003E) { # >
1229            if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1230              !!!cp (109);
1231            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1232                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1233            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1234          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1235            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1236            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1237                !!!cp (110);
1238              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1239              } else {
1240                ## NOTE: This state should never be reached.
1241                !!!cp (111);
1242            }            }
1243          } else {          } else {
1244            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1245          }          }
1246          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1247          !!!next-input-character;          !!!next-input-character;
1248    
1249          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1250    
1251          redo A;          redo A;
1252        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1253          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1254          if ($self->{current_token}->{type} eq 'start tag') {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1255              !!!cp (112);
1256            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1257                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1258            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1259          } elsif ($self->{current_token}->{type} eq 'end tag') {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1260            $self->{content_model_flag} = 'PCDATA'; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1261            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1262                !!!cp (113);
1263              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1264              } else {
1265                ## NOTE: This state should never be reached.
1266                !!!cp (114);
1267            }            }
1268          } else {          } else {
1269            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1270          }          }
1271          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1272          ## reconsume          ## reconsume
1273    
1274          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1275    
1276          redo A;          redo A;
1277        } else {        } else {
1278          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          if ({
1279                 0x0022 => 1, # "
1280                 0x0027 => 1, # '
1281                 0x003D => 1, # =
1282                }->{$self->{next_char}}) {
1283              !!!cp (115);
1284              !!!parse-error (type => 'bad attribute value');
1285            } else {
1286              !!!cp (116);
1287            }
1288            $self->{current_attribute}->{value} .= chr ($self->{next_char});
1289          ## Stay in the state          ## Stay in the state
1290          !!!next-input-character;          !!!next-input-character;
1291          redo A;          redo A;
1292        }        }
1293      } elsif ($self->{state} eq 'entity in attribute value') {      } elsif ($self->{state} == ENTITY_IN_ATTRIBUTE_VALUE_STATE) {
1294        my $token = $self->_tokenize_attempt_to_consume_an_entity (1);        my $token = $self->_tokenize_attempt_to_consume_an_entity
1295              (1,
1296               $self->{last_attribute_value_state}
1297                 == ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE ? 0x0022 : # "
1298               $self->{last_attribute_value_state}
1299                 == ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE ? 0x0027 : # '
1300               -1);
1301    
1302        unless (defined $token) {        unless (defined $token) {
1303            !!!cp (117);
1304          $self->{current_attribute}->{value} .= '&';          $self->{current_attribute}->{value} .= '&';
1305        } else {        } else {
1306            !!!cp (118);
1307          $self->{current_attribute}->{value} .= $token->{data};          $self->{current_attribute}->{value} .= $token->{data};
1308            $self->{current_attribute}->{has_reference} = $token->{has_reference};
1309          ## 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"
1310        }        }
1311    
1312        $self->{state} = $self->{last_attribute_value_state};        $self->{state} = $self->{last_attribute_value_state};
1313        # next-input-character is already done        # next-input-character is already done
1314        redo A;        redo A;
1315      } elsif ($self->{state} eq 'bogus comment') {      } elsif ($self->{state} == AFTER_ATTRIBUTE_VALUE_QUOTED_STATE) {
1316          if ($self->{next_char} == 0x0009 or # HT
1317              $self->{next_char} == 0x000A or # LF
1318              $self->{next_char} == 0x000B or # VT
1319              $self->{next_char} == 0x000C or # FF
1320              $self->{next_char} == 0x0020) { # SP
1321            !!!cp (118);
1322            $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1323            !!!next-input-character;
1324            redo A;
1325          } elsif ($self->{next_char} == 0x003E) { # >
1326            if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1327              !!!cp (119);
1328              $self->{current_token}->{first_start_tag}
1329                  = not defined $self->{last_emitted_start_tag_name};
1330              $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1331            } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1332              $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1333              if ($self->{current_token}->{attributes}) {
1334                !!!cp (120);
1335                !!!parse-error (type => 'end tag attribute');
1336              } else {
1337                ## NOTE: This state should never be reached.
1338                !!!cp (121);
1339              }
1340            } else {
1341              die "$0: $self->{current_token}->{type}: Unknown token type";
1342            }
1343            $self->{state} = DATA_STATE;
1344            !!!next-input-character;
1345    
1346            !!!emit ($self->{current_token}); # start tag or end tag
1347    
1348            redo A;
1349          } elsif ($self->{next_char} == 0x002F) { # /
1350            !!!next-input-character;
1351            if ($self->{next_char} == 0x003E and # >
1352                $self->{current_token}->{type} == START_TAG_TOKEN and
1353                $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
1354              # permitted slash
1355              !!!cp (122);
1356              #
1357            } else {
1358              !!!cp (123);
1359              !!!parse-error (type => 'nestc');
1360            }
1361            $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1362            # next-input-character is already done
1363            redo A;
1364          } else {
1365            !!!cp (124);
1366            !!!parse-error (type => 'no space between attributes');
1367            $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1368            ## reconsume
1369            redo A;
1370          }
1371        } elsif ($self->{state} == BOGUS_COMMENT_STATE) {
1372        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
1373                
1374        my $token = {type => 'comment', data => ''};        my $token = {type => COMMENT_TOKEN, data => ''};
1375    
1376        BC: {        BC: {
1377          if ($self->{next_input_character} == 0x003E) { # >          if ($self->{next_char} == 0x003E) { # >
1378            $self->{state} = 'data';            !!!cp (124);
1379              $self->{state} = DATA_STATE;
1380            !!!next-input-character;            !!!next-input-character;
1381    
1382            !!!emit ($token);            !!!emit ($token);
1383    
1384            redo A;            redo A;
1385          } elsif ($self->{next_input_character} == -1) {          } elsif ($self->{next_char} == -1) {
1386            $self->{state} = 'data';            !!!cp (125);
1387              $self->{state} = DATA_STATE;
1388            ## reconsume            ## reconsume
1389    
1390            !!!emit ($token);            !!!emit ($token);
1391    
1392            redo A;            redo A;
1393          } else {          } else {
1394            $token->{data} .= chr ($self->{next_input_character});            !!!cp (126);
1395              $token->{data} .= chr ($self->{next_char});
1396            !!!next-input-character;            !!!next-input-character;
1397            redo BC;            redo BC;
1398          }          }
1399        } # BC        } # BC
1400      } elsif ($self->{state} eq 'markup declaration open') {  
1401          die "$0: _get_next_token: unexpected case [BC]";
1402        } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {
1403        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
1404    
1405        my @next_char;        my @next_char;
1406        push @next_char, $self->{next_input_character};        push @next_char, $self->{next_char};
1407                
1408        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1409          !!!next-input-character;          !!!next-input-character;
1410          push @next_char, $self->{next_input_character};          push @next_char, $self->{next_char};
1411          if ($self->{next_input_character} == 0x002D) { # -          if ($self->{next_char} == 0x002D) { # -
1412            $self->{current_token} = {type => 'comment', data => ''};            !!!cp (127);
1413            $self->{state} = 'comment start';            $self->{current_token} = {type => COMMENT_TOKEN, data => ''};
1414              $self->{state} = COMMENT_START_STATE;
1415            !!!next-input-character;            !!!next-input-character;
1416            redo A;            redo A;
1417            } else {
1418              !!!cp (128);
1419          }          }
1420        } elsif ($self->{next_input_character} == 0x0044 or # D        } elsif ($self->{next_char} == 0x0044 or # D
1421                 $self->{next_input_character} == 0x0064) { # d                 $self->{next_char} == 0x0064) { # d
1422          !!!next-input-character;          !!!next-input-character;
1423          push @next_char, $self->{next_input_character};          push @next_char, $self->{next_char};
1424          if ($self->{next_input_character} == 0x004F or # O          if ($self->{next_char} == 0x004F or # O
1425              $self->{next_input_character} == 0x006F) { # o              $self->{next_char} == 0x006F) { # o
1426            !!!next-input-character;            !!!next-input-character;
1427            push @next_char, $self->{next_input_character};            push @next_char, $self->{next_char};
1428            if ($self->{next_input_character} == 0x0043 or # C            if ($self->{next_char} == 0x0043 or # C
1429                $self->{next_input_character} == 0x0063) { # c                $self->{next_char} == 0x0063) { # c
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} == 0x0054 or # T              if ($self->{next_char} == 0x0054 or # T
1433                  $self->{next_input_character} == 0x0074) { # t                  $self->{next_char} == 0x0074) { # t
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} == 0x0059 or # Y                if ($self->{next_char} == 0x0059 or # Y
1437                    $self->{next_input_character} == 0x0079) { # y                    $self->{next_char} == 0x0079) { # y
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} == 0x0050 or # P                  if ($self->{next_char} == 0x0050 or # P
1441                      $self->{next_input_character} == 0x0070) { # p                      $self->{next_char} == 0x0070) { # p
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} == 0x0045 or # E                    if ($self->{next_char} == 0x0045 or # E
1445                        $self->{next_input_character} == 0x0065) { # e                        $self->{next_char} == 0x0065) { # e
1446                      ## ISSUE: What a stupid code this is!                      !!!cp (129);
1447                      $self->{state} = 'DOCTYPE';                      ## TODO: What a stupid code this is!
1448                        $self->{state} = DOCTYPE_STATE;
1449                      !!!next-input-character;                      !!!next-input-character;
1450                      redo A;                      redo A;
1451                      } else {
1452                        !!!cp (130);
1453                    }                    }
1454                    } else {
1455                      !!!cp (131);
1456                  }                  }
1457                  } else {
1458                    !!!cp (132);
1459                }                }
1460                } else {
1461                  !!!cp (133);
1462              }              }
1463              } else {
1464                !!!cp (134);
1465            }            }
1466            } else {
1467              !!!cp (135);
1468          }          }
1469          } else {
1470            !!!cp (136);
1471        }        }
1472    
1473        !!!parse-error (type => 'bogus comment');        !!!parse-error (type => 'bogus comment');
1474        $self->{next_input_character} = shift @next_char;        $self->{next_char} = shift @next_char;
1475        !!!back-next-input-character (@next_char);        !!!back-next-input-character (@next_char);
1476        $self->{state} = 'bogus comment';        $self->{state} = BOGUS_COMMENT_STATE;
1477        redo A;        redo A;
1478                
1479        ## ISSUE: typos in spec: chacacters, is is a parse error        ## ISSUE: typos in spec: chacacters, is is a parse error
1480        ## 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?
1481      } elsif ($self->{state} eq 'comment start') {      } elsif ($self->{state} == COMMENT_START_STATE) {
1482        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1483          $self->{state} = 'comment start dash';          !!!cp (137);
1484            $self->{state} = COMMENT_START_DASH_STATE;
1485          !!!next-input-character;          !!!next-input-character;
1486          redo A;          redo A;
1487        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1488            !!!cp (138);
1489          !!!parse-error (type => 'bogus comment');          !!!parse-error (type => 'bogus comment');
1490          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1491          !!!next-input-character;          !!!next-input-character;
1492    
1493          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1494    
1495          redo A;          redo A;
1496        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1497            !!!cp (139);
1498          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1499          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1500          ## reconsume          ## reconsume
1501    
1502          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1503    
1504          redo A;          redo A;
1505        } else {        } else {
1506            !!!cp (140);
1507          $self->{current_token}->{data} # comment          $self->{current_token}->{data} # comment
1508              .= chr ($self->{next_input_character});              .= chr ($self->{next_char});
1509          $self->{state} = 'comment';          $self->{state} = COMMENT_STATE;
1510          !!!next-input-character;          !!!next-input-character;
1511          redo A;          redo A;
1512        }        }
1513      } elsif ($self->{state} eq 'comment start dash') {      } elsif ($self->{state} == COMMENT_START_DASH_STATE) {
1514        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1515          $self->{state} = 'comment end';          !!!cp (141);
1516            $self->{state} = COMMENT_END_STATE;
1517          !!!next-input-character;          !!!next-input-character;
1518          redo A;          redo A;
1519        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1520            !!!cp (142);
1521          !!!parse-error (type => 'bogus comment');          !!!parse-error (type => 'bogus comment');
1522          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1523          !!!next-input-character;          !!!next-input-character;
1524    
1525          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1526    
1527          redo A;          redo A;
1528        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1529            !!!cp (143);
1530          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1531          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1532          ## reconsume          ## reconsume
1533    
1534          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1535    
1536          redo A;          redo A;
1537        } else {        } else {
1538            !!!cp (144);
1539          $self->{current_token}->{data} # comment          $self->{current_token}->{data} # comment
1540              .= '-' . chr ($self->{next_input_character});              .= '-' . chr ($self->{next_char});
1541          $self->{state} = 'comment';          $self->{state} = COMMENT_STATE;
1542          !!!next-input-character;          !!!next-input-character;
1543          redo A;          redo A;
1544        }        }
1545      } elsif ($self->{state} eq 'comment') {      } elsif ($self->{state} == COMMENT_STATE) {
1546        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1547          $self->{state} = 'comment end dash';          !!!cp (145);
1548            $self->{state} = COMMENT_END_DASH_STATE;
1549          !!!next-input-character;          !!!next-input-character;
1550          redo A;          redo A;
1551        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1552            !!!cp (146);
1553          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1554          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1555          ## reconsume          ## reconsume
1556    
1557          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1558    
1559          redo A;          redo A;
1560        } else {        } else {
1561          $self->{current_token}->{data} .= chr ($self->{next_input_character}); # comment          !!!cp (147);
1562            $self->{current_token}->{data} .= chr ($self->{next_char}); # comment
1563          ## Stay in the state          ## Stay in the state
1564          !!!next-input-character;          !!!next-input-character;
1565          redo A;          redo A;
1566        }        }
1567      } elsif ($self->{state} eq 'comment end dash') {      } elsif ($self->{state} == COMMENT_END_DASH_STATE) {
1568        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1569          $self->{state} = 'comment end';          !!!cp (148);
1570            $self->{state} = COMMENT_END_STATE;
1571          !!!next-input-character;          !!!next-input-character;
1572          redo A;          redo A;
1573        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1574            !!!cp (149);
1575          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1576          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1577          ## reconsume          ## reconsume
1578    
1579          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1580    
1581          redo A;          redo A;
1582        } else {        } else {
1583          $self->{current_token}->{data} .= '-' . chr ($self->{next_input_character}); # comment          !!!cp (150);
1584          $self->{state} = 'comment';          $self->{current_token}->{data} .= '-' . chr ($self->{next_char}); # comment
1585            $self->{state} = COMMENT_STATE;
1586          !!!next-input-character;          !!!next-input-character;
1587          redo A;          redo A;
1588        }        }
1589      } elsif ($self->{state} eq 'comment end') {      } elsif ($self->{state} == COMMENT_END_STATE) {
1590        if ($self->{next_input_character} == 0x003E) { # >        if ($self->{next_char} == 0x003E) { # >
1591          $self->{state} = 'data';          !!!cp (151);
1592            $self->{state} = DATA_STATE;
1593          !!!next-input-character;          !!!next-input-character;
1594    
1595          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1596    
1597          redo A;          redo A;
1598        } elsif ($self->{next_input_character} == 0x002D) { # -        } elsif ($self->{next_char} == 0x002D) { # -
1599            !!!cp (152);
1600          !!!parse-error (type => 'dash in comment');          !!!parse-error (type => 'dash in comment');
1601          $self->{current_token}->{data} .= '-'; # comment          $self->{current_token}->{data} .= '-'; # comment
1602          ## Stay in the state          ## Stay in the state
1603          !!!next-input-character;          !!!next-input-character;
1604          redo A;          redo A;
1605        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1606            !!!cp (153);
1607          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1608          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1609          ## reconsume          ## reconsume
1610    
1611          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1612    
1613          redo A;          redo A;
1614        } else {        } else {
1615            !!!cp (154);
1616          !!!parse-error (type => 'dash in comment');          !!!parse-error (type => 'dash in comment');
1617          $self->{current_token}->{data} .= '--' . chr ($self->{next_input_character}); # comment          $self->{current_token}->{data} .= '--' . chr ($self->{next_char}); # comment
1618          $self->{state} = 'comment';          $self->{state} = COMMENT_STATE;
1619          !!!next-input-character;          !!!next-input-character;
1620          redo A;          redo A;
1621        }        }
1622      } elsif ($self->{state} eq 'DOCTYPE') {      } elsif ($self->{state} == DOCTYPE_STATE) {
1623        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1624            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1625            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1626            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1627            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1628          $self->{state} = 'before DOCTYPE name';          !!!cp (155);
1629            $self->{state} = BEFORE_DOCTYPE_NAME_STATE;
1630          !!!next-input-character;          !!!next-input-character;
1631          redo A;          redo A;
1632        } else {        } else {
1633            !!!cp (156);
1634          !!!parse-error (type => 'no space before DOCTYPE name');          !!!parse-error (type => 'no space before DOCTYPE name');
1635          $self->{state} = 'before DOCTYPE name';          $self->{state} = BEFORE_DOCTYPE_NAME_STATE;
1636          ## reconsume          ## reconsume
1637          redo A;          redo A;
1638        }        }
1639      } elsif ($self->{state} eq 'before DOCTYPE name') {      } elsif ($self->{state} == BEFORE_DOCTYPE_NAME_STATE) {
1640        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1641            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1642            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1643            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1644            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1645            !!!cp (157);
1646          ## Stay in the state          ## Stay in the state
1647          !!!next-input-character;          !!!next-input-character;
1648          redo A;          redo A;
1649        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1650            !!!cp (158);
1651          !!!parse-error (type => 'no DOCTYPE name');          !!!parse-error (type => 'no DOCTYPE name');
1652          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1653          !!!next-input-character;          !!!next-input-character;
1654    
1655          !!!emit ({type => 'DOCTYPE'}); # incorrect          !!!emit ({type => DOCTYPE_TOKEN, quirks => 1});
1656    
1657          redo A;          redo A;
1658        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1659            !!!cp (159);
1660          !!!parse-error (type => 'no DOCTYPE name');          !!!parse-error (type => 'no DOCTYPE name');
1661          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1662          ## reconsume          ## reconsume
1663    
1664          !!!emit ({type => 'DOCTYPE'}); # incorrect          !!!emit ({type => DOCTYPE_TOKEN, quirks => 1});
1665    
1666          redo A;          redo A;
1667        } else {        } else {
1668            !!!cp (160);
1669          $self->{current_token}          $self->{current_token}
1670              = {type => 'DOCTYPE',              = {type => DOCTYPE_TOKEN,
1671                 name => chr ($self->{next_input_character}),                 name => chr ($self->{next_char}),
1672                 correct => 1};                 #quirks => 0,
1673                  };
1674  ## ISSUE: "Set the token's name name to the" in the spec  ## ISSUE: "Set the token's name name to the" in the spec
1675          $self->{state} = 'DOCTYPE name';          $self->{state} = DOCTYPE_NAME_STATE;
1676          !!!next-input-character;          !!!next-input-character;
1677          redo A;          redo A;
1678        }        }
1679      } elsif ($self->{state} eq 'DOCTYPE name') {      } elsif ($self->{state} == DOCTYPE_NAME_STATE) {
1680  ## ISSUE: Redundant "First," in the spec.  ## ISSUE: Redundant "First," in the spec.
1681        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1682            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1683            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1684            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1685            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1686          $self->{state} = 'after DOCTYPE name';          !!!cp (161);
1687            $self->{state} = AFTER_DOCTYPE_NAME_STATE;
1688          !!!next-input-character;          !!!next-input-character;
1689          redo A;          redo A;
1690        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1691          $self->{state} = 'data';          !!!cp (162);
1692            $self->{state} = DATA_STATE;
1693          !!!next-input-character;          !!!next-input-character;
1694    
1695          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1696    
1697          redo A;          redo A;
1698        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1699            !!!cp (163);
1700          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
1701          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1702          ## reconsume          ## reconsume
1703    
1704          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1705          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1706    
1707          redo A;          redo A;
1708        } else {        } else {
1709            !!!cp (164);
1710          $self->{current_token}->{name}          $self->{current_token}->{name}
1711            .= chr ($self->{next_input_character}); # DOCTYPE            .= chr ($self->{next_char}); # DOCTYPE
1712          ## Stay in the state          ## Stay in the state
1713          !!!next-input-character;          !!!next-input-character;
1714          redo A;          redo A;
1715        }        }
1716      } elsif ($self->{state} eq 'after DOCTYPE name') {      } elsif ($self->{state} == AFTER_DOCTYPE_NAME_STATE) {
1717        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1718            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1719            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1720            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1721            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1722            !!!cp (165);
1723          ## Stay in the state          ## Stay in the state
1724          !!!next-input-character;          !!!next-input-character;
1725          redo A;          redo A;
1726        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1727          $self->{state} = 'data';          !!!cp (166);
1728            $self->{state} = DATA_STATE;
1729          !!!next-input-character;          !!!next-input-character;
1730    
1731          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1732    
1733          redo A;          redo A;
1734        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1735            !!!cp (167);
1736          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
1737          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1738          ## reconsume          ## reconsume
1739    
1740          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1741          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1742    
1743          redo A;          redo A;
1744        } elsif ($self->{next_input_character} == 0x0050 or # P        } elsif ($self->{next_char} == 0x0050 or # P
1745                 $self->{next_input_character} == 0x0070) { # p                 $self->{next_char} == 0x0070) { # p
1746          !!!next-input-character;          !!!next-input-character;
1747          if ($self->{next_input_character} == 0x0055 or # U          if ($self->{next_char} == 0x0055 or # U
1748              $self->{next_input_character} == 0x0075) { # u              $self->{next_char} == 0x0075) { # u
1749            !!!next-input-character;            !!!next-input-character;
1750            if ($self->{next_input_character} == 0x0042 or # B            if ($self->{next_char} == 0x0042 or # B
1751                $self->{next_input_character} == 0x0062) { # b                $self->{next_char} == 0x0062) { # b
1752              !!!next-input-character;              !!!next-input-character;
1753              if ($self->{next_input_character} == 0x004C or # L              if ($self->{next_char} == 0x004C or # L
1754                  $self->{next_input_character} == 0x006C) { # l                  $self->{next_char} == 0x006C) { # l
1755                !!!next-input-character;                !!!next-input-character;
1756                if ($self->{next_input_character} == 0x0049 or # I                if ($self->{next_char} == 0x0049 or # I
1757                    $self->{next_input_character} == 0x0069) { # i                    $self->{next_char} == 0x0069) { # i
1758                  !!!next-input-character;                  !!!next-input-character;
1759                  if ($self->{next_input_character} == 0x0043 or # C                  if ($self->{next_char} == 0x0043 or # C
1760                      $self->{next_input_character} == 0x0063) { # c                      $self->{next_char} == 0x0063) { # c
1761                    $self->{state} = 'before DOCTYPE public identifier';                    !!!cp (168);
1762                      $self->{state} = BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
1763                    !!!next-input-character;                    !!!next-input-character;
1764                    redo A;                    redo A;
1765                    } else {
1766                      !!!cp (169);
1767                  }                  }
1768                  } else {
1769                    !!!cp (170);
1770                }                }
1771                } else {
1772                  !!!cp (171);
1773              }              }
1774              } else {
1775                !!!cp (172);
1776            }            }
1777            } else {
1778              !!!cp (173);
1779          }          }
1780    
1781          #          #
1782        } elsif ($self->{next_input_character} == 0x0053 or # S        } elsif ($self->{next_char} == 0x0053 or # S
1783                 $self->{next_input_character} == 0x0073) { # s                 $self->{next_char} == 0x0073) { # s
1784          !!!next-input-character;          !!!next-input-character;
1785          if ($self->{next_input_character} == 0x0059 or # Y          if ($self->{next_char} == 0x0059 or # Y
1786              $self->{next_input_character} == 0x0079) { # y              $self->{next_char} == 0x0079) { # y
1787            !!!next-input-character;            !!!next-input-character;
1788            if ($self->{next_input_character} == 0x0053 or # S            if ($self->{next_char} == 0x0053 or # S
1789                $self->{next_input_character} == 0x0073) { # s                $self->{next_char} == 0x0073) { # s
1790              !!!next-input-character;              !!!next-input-character;
1791              if ($self->{next_input_character} == 0x0054 or # T              if ($self->{next_char} == 0x0054 or # T
1792                  $self->{next_input_character} == 0x0074) { # t                  $self->{next_char} == 0x0074) { # t
1793                !!!next-input-character;                !!!next-input-character;
1794                if ($self->{next_input_character} == 0x0045 or # E                if ($self->{next_char} == 0x0045 or # E
1795                    $self->{next_input_character} == 0x0065) { # e                    $self->{next_char} == 0x0065) { # e
1796                  !!!next-input-character;                  !!!next-input-character;
1797                  if ($self->{next_input_character} == 0x004D or # M                  if ($self->{next_char} == 0x004D or # M
1798                      $self->{next_input_character} == 0x006D) { # m                      $self->{next_char} == 0x006D) { # m
1799                    $self->{state} = 'before DOCTYPE system identifier';                    !!!cp (174);
1800                      $self->{state} = BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
1801                    !!!next-input-character;                    !!!next-input-character;
1802                    redo A;                    redo A;
1803                    } else {
1804                      !!!cp (175);
1805                  }                  }
1806                  } else {
1807                    !!!cp (176);
1808                }                }
1809                } else {
1810                  !!!cp (177);
1811              }              }
1812              } else {
1813                !!!cp (178);
1814            }            }
1815            } else {
1816              !!!cp (179);
1817          }          }
1818    
1819          #          #
1820        } else {        } else {
1821            !!!cp (180);
1822          !!!next-input-character;          !!!next-input-character;
1823          #          #
1824        }        }
1825    
1826        !!!parse-error (type => 'string after DOCTYPE name');        !!!parse-error (type => 'string after DOCTYPE name');
1827        $self->{state} = 'bogus DOCTYPE';        $self->{current_token}->{quirks} = 1;
1828    
1829          $self->{state} = BOGUS_DOCTYPE_STATE;
1830        # next-input-character is already done        # next-input-character is already done
1831        redo A;        redo A;
1832      } elsif ($self->{state} eq 'before DOCTYPE public identifier') {      } elsif ($self->{state} == BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE) {
1833        if ({        if ({
1834              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
1835              #0x000D => 1, # HT, LF, VT, FF, SP, CR              #0x000D => 1, # HT, LF, VT, FF, SP, CR
1836            }->{$self->{next_input_character}}) {            }->{$self->{next_char}}) {
1837            !!!cp (181);
1838          ## Stay in the state          ## Stay in the state
1839          !!!next-input-character;          !!!next-input-character;
1840          redo A;          redo A;
1841        } elsif ($self->{next_input_character} eq 0x0022) { # "        } elsif ($self->{next_char} eq 0x0022) { # "
1842            !!!cp (182);
1843          $self->{current_token}->{public_identifier} = ''; # DOCTYPE          $self->{current_token}->{public_identifier} = ''; # DOCTYPE
1844          $self->{state} = 'DOCTYPE public identifier (double-quoted)';          $self->{state} = DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE;
1845          !!!next-input-character;          !!!next-input-character;
1846          redo A;          redo A;
1847        } elsif ($self->{next_input_character} eq 0x0027) { # '        } elsif ($self->{next_char} eq 0x0027) { # '
1848            !!!cp (183);
1849          $self->{current_token}->{public_identifier} = ''; # DOCTYPE          $self->{current_token}->{public_identifier} = ''; # DOCTYPE
1850          $self->{state} = 'DOCTYPE public identifier (single-quoted)';          $self->{state} = DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE;
1851          !!!next-input-character;          !!!next-input-character;
1852          redo A;          redo A;
1853        } elsif ($self->{next_input_character} eq 0x003E) { # >        } elsif ($self->{next_char} eq 0x003E) { # >
1854            !!!cp (184);
1855          !!!parse-error (type => 'no PUBLIC literal');          !!!parse-error (type => 'no PUBLIC literal');
1856    
1857          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1858          !!!next-input-character;          !!!next-input-character;
1859    
1860          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1861          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1862    
1863          redo A;          redo A;
1864        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1865            !!!cp (185);
1866          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
1867    
1868          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1869          ## reconsume          ## reconsume
1870    
1871          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1872          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1873    
1874          redo A;          redo A;
1875        } else {        } else {
1876            !!!cp (186);
1877          !!!parse-error (type => 'string after PUBLIC');          !!!parse-error (type => 'string after PUBLIC');
1878          $self->{state} = 'bogus DOCTYPE';          $self->{current_token}->{quirks} = 1;
1879    
1880            $self->{state} = BOGUS_DOCTYPE_STATE;
1881          !!!next-input-character;          !!!next-input-character;
1882          redo A;          redo A;
1883        }        }
1884      } elsif ($self->{state} eq 'DOCTYPE public identifier (double-quoted)') {      } elsif ($self->{state} == DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE) {
1885        if ($self->{next_input_character} == 0x0022) { # "        if ($self->{next_char} == 0x0022) { # "
1886          $self->{state} = 'after DOCTYPE public identifier';          !!!cp (187);
1887            $self->{state} = AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
1888            !!!next-input-character;
1889            redo A;
1890          } elsif ($self->{next_char} == 0x003E) { # >
1891            !!!cp (188);
1892            !!!parse-error (type => 'unclosed PUBLIC literal');
1893    
1894            $self->{state} = DATA_STATE;
1895          !!!next-input-character;          !!!next-input-character;
1896    
1897            $self->{current_token}->{quirks} = 1;
1898            !!!emit ($self->{current_token}); # DOCTYPE
1899    
1900          redo A;          redo A;
1901        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1902            !!!cp (189);
1903          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
1904    
1905          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1906          ## reconsume          ## reconsume
1907    
1908          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1909          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1910    
1911          redo A;          redo A;
1912        } else {        } else {
1913            !!!cp (190);
1914          $self->{current_token}->{public_identifier} # DOCTYPE          $self->{current_token}->{public_identifier} # DOCTYPE
1915              .= chr $self->{next_input_character};              .= chr $self->{next_char};
1916          ## Stay in the state          ## Stay in the state
1917          !!!next-input-character;          !!!next-input-character;
1918          redo A;          redo A;
1919        }        }
1920      } elsif ($self->{state} eq 'DOCTYPE public identifier (single-quoted)') {      } elsif ($self->{state} == DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE) {
1921        if ($self->{next_input_character} == 0x0027) { # '        if ($self->{next_char} == 0x0027) { # '
1922          $self->{state} = 'after DOCTYPE public identifier';          !!!cp (191);
1923            $self->{state} = AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
1924            !!!next-input-character;
1925            redo A;
1926          } elsif ($self->{next_char} == 0x003E) { # >
1927            !!!cp (192);
1928            !!!parse-error (type => 'unclosed PUBLIC literal');
1929    
1930            $self->{state} = DATA_STATE;
1931          !!!next-input-character;          !!!next-input-character;
1932    
1933            $self->{current_token}->{quirks} = 1;
1934            !!!emit ($self->{current_token}); # DOCTYPE
1935    
1936          redo A;          redo A;
1937        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1938            !!!cp (193);
1939          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
1940    
1941          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1942          ## reconsume          ## reconsume
1943    
1944          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1945          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1946    
1947          redo A;          redo A;
1948        } else {        } else {
1949            !!!cp (194);
1950          $self->{current_token}->{public_identifier} # DOCTYPE          $self->{current_token}->{public_identifier} # DOCTYPE
1951              .= chr $self->{next_input_character};              .= chr $self->{next_char};
1952          ## Stay in the state          ## Stay in the state
1953          !!!next-input-character;          !!!next-input-character;
1954          redo A;          redo A;
1955        }        }
1956      } elsif ($self->{state} eq 'after DOCTYPE public identifier') {      } elsif ($self->{state} == AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE) {
1957        if ({        if ({
1958              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
1959              #0x000D => 1, # HT, LF, VT, FF, SP, CR              #0x000D => 1, # HT, LF, VT, FF, SP, CR
1960            }->{$self->{next_input_character}}) {            }->{$self->{next_char}}) {
1961            !!!cp (195);
1962          ## Stay in the state          ## Stay in the state
1963          !!!next-input-character;          !!!next-input-character;
1964          redo A;          redo A;
1965        } elsif ($self->{next_input_character} == 0x0022) { # "        } elsif ($self->{next_char} == 0x0022) { # "
1966            !!!cp (196);
1967          $self->{current_token}->{system_identifier} = ''; # DOCTYPE          $self->{current_token}->{system_identifier} = ''; # DOCTYPE
1968          $self->{state} = 'DOCTYPE system identifier (double-quoted)';          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE;
1969          !!!next-input-character;          !!!next-input-character;
1970          redo A;          redo A;
1971        } elsif ($self->{next_input_character} == 0x0027) { # '        } elsif ($self->{next_char} == 0x0027) { # '
1972            !!!cp (197);
1973          $self->{current_token}->{system_identifier} = ''; # DOCTYPE          $self->{current_token}->{system_identifier} = ''; # DOCTYPE
1974          $self->{state} = 'DOCTYPE system identifier (single-quoted)';          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE;
1975          !!!next-input-character;          !!!next-input-character;
1976          redo A;          redo A;
1977        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1978          $self->{state} = 'data';          !!!cp (198);
1979            $self->{state} = DATA_STATE;
1980          !!!next-input-character;          !!!next-input-character;
1981    
1982          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1983    
1984          redo A;          redo A;
1985        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1986            !!!cp (199);
1987          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
1988    
1989          $self->{state} = 'data';          $self->{state} = DATA_STATE;
1990          ## reconsume          ## reconsume
1991    
1992          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1993          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1994    
1995          redo A;          redo A;
1996        } else {        } else {
1997            !!!cp (200);
1998          !!!parse-error (type => 'string after PUBLIC literal');          !!!parse-error (type => 'string after PUBLIC literal');
1999          $self->{state} = 'bogus DOCTYPE';          $self->{current_token}->{quirks} = 1;
2000    
2001            $self->{state} = BOGUS_DOCTYPE_STATE;
2002          !!!next-input-character;          !!!next-input-character;
2003          redo A;          redo A;
2004        }        }
2005      } elsif ($self->{state} eq 'before DOCTYPE system identifier') {      } elsif ($self->{state} == BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE) {
2006        if ({        if ({
2007              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
2008              #0x000D => 1, # HT, LF, VT, FF, SP, CR              #0x000D => 1, # HT, LF, VT, FF, SP, CR
2009            }->{$self->{next_input_character}}) {            }->{$self->{next_char}}) {
2010            !!!cp (201);
2011          ## Stay in the state          ## Stay in the state
2012          !!!next-input-character;          !!!next-input-character;
2013          redo A;          redo A;
2014        } elsif ($self->{next_input_character} == 0x0022) { # "        } elsif ($self->{next_char} == 0x0022) { # "
2015            !!!cp (202);
2016          $self->{current_token}->{system_identifier} = ''; # DOCTYPE          $self->{current_token}->{system_identifier} = ''; # DOCTYPE
2017          $self->{state} = 'DOCTYPE system identifier (double-quoted)';          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE;
2018          !!!next-input-character;          !!!next-input-character;
2019          redo A;          redo A;
2020        } elsif ($self->{next_input_character} == 0x0027) { # '        } elsif ($self->{next_char} == 0x0027) { # '
2021            !!!cp (203);
2022          $self->{current_token}->{system_identifier} = ''; # DOCTYPE          $self->{current_token}->{system_identifier} = ''; # DOCTYPE
2023          $self->{state} = 'DOCTYPE system identifier (single-quoted)';          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE;
2024          !!!next-input-character;          !!!next-input-character;
2025          redo A;          redo A;
2026        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2027            !!!cp (204);
2028          !!!parse-error (type => 'no SYSTEM literal');          !!!parse-error (type => 'no SYSTEM literal');
2029          $self->{state} = 'data';          $self->{state} = DATA_STATE;
2030          !!!next-input-character;          !!!next-input-character;
2031    
2032          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2033          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2034    
2035          redo A;          redo A;
2036        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2037            !!!cp (205);
2038          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
2039    
2040          $self->{state} = 'data';          $self->{state} = DATA_STATE;
2041          ## reconsume          ## reconsume
2042    
2043          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2044          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2045    
2046          redo A;          redo A;
2047        } else {        } else {
2048            !!!cp (206);
2049          !!!parse-error (type => 'string after SYSTEM');          !!!parse-error (type => 'string after SYSTEM');
2050          $self->{state} = 'bogus DOCTYPE';          $self->{current_token}->{quirks} = 1;
2051    
2052            $self->{state} = BOGUS_DOCTYPE_STATE;
2053          !!!next-input-character;          !!!next-input-character;
2054          redo A;          redo A;
2055        }        }
2056      } elsif ($self->{state} eq 'DOCTYPE system identifier (double-quoted)') {      } elsif ($self->{state} == DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE) {
2057        if ($self->{next_input_character} == 0x0022) { # "        if ($self->{next_char} == 0x0022) { # "
2058          $self->{state} = 'after DOCTYPE system identifier';          !!!cp (207);
2059            $self->{state} = AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
2060          !!!next-input-character;          !!!next-input-character;
2061          redo A;          redo A;
2062        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == 0x003E) { # >
2063            !!!cp (208);
2064            !!!parse-error (type => 'unclosed PUBLIC literal');
2065    
2066            $self->{state} = DATA_STATE;
2067            !!!next-input-character;
2068    
2069            $self->{current_token}->{quirks} = 1;
2070            !!!emit ($self->{current_token}); # DOCTYPE
2071    
2072            redo A;
2073          } elsif ($self->{next_char} == -1) {
2074            !!!cp (209);
2075          !!!parse-error (type => 'unclosed SYSTEM literal');          !!!parse-error (type => 'unclosed SYSTEM literal');
2076    
2077          $self->{state} = 'data';          $self->{state} = DATA_STATE;
2078          ## reconsume          ## reconsume
2079    
2080          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2081          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2082    
2083          redo A;          redo A;
2084        } else {        } else {
2085            !!!cp (210);
2086          $self->{current_token}->{system_identifier} # DOCTYPE          $self->{current_token}->{system_identifier} # DOCTYPE
2087              .= chr $self->{next_input_character};              .= chr $self->{next_char};
2088          ## Stay in the state          ## Stay in the state
2089          !!!next-input-character;          !!!next-input-character;
2090          redo A;          redo A;
2091        }        }
2092      } elsif ($self->{state} eq 'DOCTYPE system identifier (single-quoted)') {      } elsif ($self->{state} == DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE) {
2093        if ($self->{next_input_character} == 0x0027) { # '        if ($self->{next_char} == 0x0027) { # '
2094          $self->{state} = 'after DOCTYPE system identifier';          !!!cp (211);
2095            $self->{state} = AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
2096            !!!next-input-character;
2097            redo A;
2098          } elsif ($self->{next_char} == 0x003E) { # >
2099            !!!cp (212);
2100            !!!parse-error (type => 'unclosed PUBLIC literal');
2101    
2102            $self->{state} = DATA_STATE;
2103          !!!next-input-character;          !!!next-input-character;
2104    
2105            $self->{current_token}->{quirks} = 1;
2106            !!!emit ($self->{current_token}); # DOCTYPE
2107    
2108          redo A;          redo A;
2109        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2110            !!!cp (213);
2111          !!!parse-error (type => 'unclosed SYSTEM literal');          !!!parse-error (type => 'unclosed SYSTEM literal');
2112    
2113          $self->{state} = 'data';          $self->{state} = DATA_STATE;
2114          ## reconsume          ## reconsume
2115    
2116          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2117          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2118    
2119          redo A;          redo A;
2120        } else {        } else {
2121            !!!cp (214);
2122          $self->{current_token}->{system_identifier} # DOCTYPE          $self->{current_token}->{system_identifier} # DOCTYPE
2123              .= chr $self->{next_input_character};              .= chr $self->{next_char};
2124          ## Stay in the state          ## Stay in the state
2125          !!!next-input-character;          !!!next-input-character;
2126          redo A;          redo A;
2127        }        }
2128      } elsif ($self->{state} eq 'after DOCTYPE system identifier') {      } elsif ($self->{state} == AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE) {
2129        if ({        if ({
2130              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
2131              #0x000D => 1, # HT, LF, VT, FF, SP, CR              #0x000D => 1, # HT, LF, VT, FF, SP, CR
2132            }->{$self->{next_input_character}}) {            }->{$self->{next_char}}) {
2133            !!!cp (215);
2134          ## Stay in the state          ## Stay in the state
2135          !!!next-input-character;          !!!next-input-character;
2136          redo A;          redo A;
2137        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2138          $self->{state} = 'data';          !!!cp (216);
2139            $self->{state} = DATA_STATE;
2140          !!!next-input-character;          !!!next-input-character;
2141    
2142          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2143    
2144          redo A;          redo A;
2145        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2146            !!!cp (217);
2147          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
2148    
2149          $self->{state} = 'data';          $self->{state} = DATA_STATE;
2150          ## reconsume          ## reconsume
2151    
2152          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2153          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2154    
2155          redo A;          redo A;
2156        } else {        } else {
2157            !!!cp (218);
2158          !!!parse-error (type => 'string after SYSTEM literal');          !!!parse-error (type => 'string after SYSTEM literal');
2159          $self->{state} = 'bogus DOCTYPE';          #$self->{current_token}->{quirks} = 1;
2160    
2161            $self->{state} = BOGUS_DOCTYPE_STATE;
2162          !!!next-input-character;          !!!next-input-character;
2163          redo A;          redo A;
2164        }        }
2165      } elsif ($self->{state} eq 'bogus DOCTYPE') {      } elsif ($self->{state} == BOGUS_DOCTYPE_STATE) {
2166        if ($self->{next_input_character} == 0x003E) { # >        if ($self->{next_char} == 0x003E) { # >
2167          $self->{state} = 'data';          !!!cp (219);
2168            $self->{state} = DATA_STATE;
2169          !!!next-input-character;          !!!next-input-character;
2170    
         delete $self->{current_token}->{correct};  
2171          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2172    
2173          redo A;          redo A;
2174        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2175            !!!cp (220);
2176          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
2177          $self->{state} = 'data';          $self->{state} = DATA_STATE;
2178          ## reconsume          ## reconsume
2179    
         delete $self->{current_token}->{correct};  
2180          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2181    
2182          redo A;          redo A;
2183        } else {        } else {
2184            !!!cp (221);
2185          ## Stay in the state          ## Stay in the state
2186          !!!next-input-character;          !!!next-input-character;
2187          redo A;          redo A;
# Line 1606  sub _get_next_token ($) { Line 2194  sub _get_next_token ($) {
2194    die "$0: _get_next_token: unexpected case";    die "$0: _get_next_token: unexpected case";
2195  } # _get_next_token  } # _get_next_token
2196    
2197  sub _tokenize_attempt_to_consume_an_entity ($$) {  sub _tokenize_attempt_to_consume_an_entity ($$$) {
2198    my ($self, $in_attr) = @_;    my ($self, $in_attr, $additional) = @_;
2199    
2200    if ({    if ({
2201         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,
2202         0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR         0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR
2203        }->{$self->{next_input_character}}) {         $additional => 1,
2204          }->{$self->{next_char}}) {
2205        !!!cp (1001);
2206      ## Don't consume      ## Don't consume
2207      ## No error      ## No error
2208      return undef;      return undef;
2209    } elsif ($self->{next_input_character} == 0x0023) { # #    } elsif ($self->{next_char} == 0x0023) { # #
2210      !!!next-input-character;      !!!next-input-character;
2211      if ($self->{next_input_character} == 0x0078 or # x      if ($self->{next_char} == 0x0078 or # x
2212          $self->{next_input_character} == 0x0058) { # X          $self->{next_char} == 0x0058) { # X
2213        my $code;        my $code;
2214        X: {        X: {
2215          my $x_char = $self->{next_input_character};          my $x_char = $self->{next_char};
2216          !!!next-input-character;          !!!next-input-character;
2217          if (0x0030 <= $self->{next_input_character} and          if (0x0030 <= $self->{next_char} and
2218              $self->{next_input_character} <= 0x0039) { # 0..9              $self->{next_char} <= 0x0039) { # 0..9
2219              !!!cp (1002);
2220            $code ||= 0;            $code ||= 0;
2221            $code *= 0x10;            $code *= 0x10;
2222            $code += $self->{next_input_character} - 0x0030;            $code += $self->{next_char} - 0x0030;
2223            redo X;            redo X;
2224          } elsif (0x0061 <= $self->{next_input_character} and          } elsif (0x0061 <= $self->{next_char} and
2225                   $self->{next_input_character} <= 0x0066) { # a..f                   $self->{next_char} <= 0x0066) { # a..f
2226              !!!cp (1003);
2227            $code ||= 0;            $code ||= 0;
2228            $code *= 0x10;            $code *= 0x10;
2229            $code += $self->{next_input_character} - 0x0060 + 9;            $code += $self->{next_char} - 0x0060 + 9;
2230            redo X;            redo X;
2231          } elsif (0x0041 <= $self->{next_input_character} and          } elsif (0x0041 <= $self->{next_char} and
2232                   $self->{next_input_character} <= 0x0046) { # A..F                   $self->{next_char} <= 0x0046) { # A..F
2233              !!!cp (1004);
2234            $code ||= 0;            $code ||= 0;
2235            $code *= 0x10;            $code *= 0x10;
2236            $code += $self->{next_input_character} - 0x0040 + 9;            $code += $self->{next_char} - 0x0040 + 9;
2237            redo X;            redo X;
2238          } elsif (not defined $code) { # no hexadecimal digit          } elsif (not defined $code) { # no hexadecimal digit
2239              !!!cp (1005);
2240            !!!parse-error (type => 'bare hcro');            !!!parse-error (type => 'bare hcro');
2241            $self->{next_input_character} = 0x0023; # #            !!!back-next-input-character ($x_char, $self->{next_char});
2242            !!!back-next-input-character ($x_char);            $self->{next_char} = 0x0023; # #
2243            return undef;            return undef;
2244          } elsif ($self->{next_input_character} == 0x003B) { # ;          } elsif ($self->{next_char} == 0x003B) { # ;
2245              !!!cp (1006);
2246            !!!next-input-character;            !!!next-input-character;
2247          } else {          } else {
2248              !!!cp (1007);
2249            !!!parse-error (type => 'no refc');            !!!parse-error (type => 'no refc');
2250          }          }
2251    
2252          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2253              !!!cp (1008);
2254            !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);            !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);
2255            $code = 0xFFFD;            $code = 0xFFFD;
2256          } elsif ($code > 0x10FFFF) {          } elsif ($code > 0x10FFFF) {
2257              !!!cp (1009);
2258            !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);            !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);
2259            $code = 0xFFFD;            $code = 0xFFFD;
2260          } elsif ($code == 0x000D) {          } elsif ($code == 0x000D) {
2261              !!!cp (1010);
2262            !!!parse-error (type => 'CR character reference');            !!!parse-error (type => 'CR character reference');
2263            $code = 0x000A;            $code = 0x000A;
2264          } elsif (0x80 <= $code and $code <= 0x9F) {          } elsif (0x80 <= $code and $code <= 0x9F) {
2265              !!!cp (1011);
2266            !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);            !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);
2267            $code = $c1_entity_char->{$code};            $code = $c1_entity_char->{$code};
2268          }          }
2269    
2270          return {type => 'character', data => chr $code};          return {type => CHARACTER_TOKEN, data => chr $code,
2271                    has_reference => 1};
2272        } # X        } # X
2273      } elsif (0x0030 <= $self->{next_input_character} and      } elsif (0x0030 <= $self->{next_char} and
2274               $self->{next_input_character} <= 0x0039) { # 0..9               $self->{next_char} <= 0x0039) { # 0..9
2275        my $code = $self->{next_input_character} - 0x0030;        my $code = $self->{next_char} - 0x0030;
2276        !!!next-input-character;        !!!next-input-character;
2277                
2278        while (0x0030 <= $self->{next_input_character} and        while (0x0030 <= $self->{next_char} and
2279                  $self->{next_input_character} <= 0x0039) { # 0..9                  $self->{next_char} <= 0x0039) { # 0..9
2280            !!!cp (1012);
2281          $code *= 10;          $code *= 10;
2282          $code += $self->{next_input_character} - 0x0030;          $code += $self->{next_char} - 0x0030;
2283                    
2284          !!!next-input-character;          !!!next-input-character;
2285        }        }
2286    
2287        if ($self->{next_input_character} == 0x003B) { # ;        if ($self->{next_char} == 0x003B) { # ;
2288            !!!cp (1013);
2289          !!!next-input-character;          !!!next-input-character;
2290        } else {        } else {
2291            !!!cp (1014);
2292          !!!parse-error (type => 'no refc');          !!!parse-error (type => 'no refc');
2293        }        }
2294    
2295        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2296            !!!cp (1015);
2297          !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);          !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);
2298          $code = 0xFFFD;          $code = 0xFFFD;
2299        } elsif ($code > 0x10FFFF) {        } elsif ($code > 0x10FFFF) {
2300            !!!cp (1016);
2301          !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);          !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);
2302          $code = 0xFFFD;          $code = 0xFFFD;
2303        } elsif ($code == 0x000D) {        } elsif ($code == 0x000D) {
2304            !!!cp (1017);
2305          !!!parse-error (type => 'CR character reference');          !!!parse-error (type => 'CR character reference');
2306          $code = 0x000A;          $code = 0x000A;
2307        } elsif (0x80 <= $code and $code <= 0x9F) {        } elsif (0x80 <= $code and $code <= 0x9F) {
2308            !!!cp (1018);
2309          !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);          !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);
2310          $code = $c1_entity_char->{$code};          $code = $c1_entity_char->{$code};
2311        }        }
2312                
2313        return {type => 'character', data => chr $code};        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1};
2314      } else {      } else {
2315          !!!cp (1019);
2316        !!!parse-error (type => 'bare nero');        !!!parse-error (type => 'bare nero');
2317        !!!back-next-input-character ($self->{next_input_character});        !!!back-next-input-character ($self->{next_char});
2318        $self->{next_input_character} = 0x0023; # #        $self->{next_char} = 0x0023; # #
2319        return undef;        return undef;
2320      }      }
2321    } elsif ((0x0041 <= $self->{next_input_character} and    } elsif ((0x0041 <= $self->{next_char} and
2322              $self->{next_input_character} <= 0x005A) or              $self->{next_char} <= 0x005A) or
2323             (0x0061 <= $self->{next_input_character} and             (0x0061 <= $self->{next_char} and
2324              $self->{next_input_character} <= 0x007A)) {              $self->{next_char} <= 0x007A)) {
2325      my $entity_name = chr $self->{next_input_character};      my $entity_name = chr $self->{next_char};
2326      !!!next-input-character;      !!!next-input-character;
2327    
2328      my $value = $entity_name;      my $value = $entity_name;
2329      my $match;      my $match = 0;
2330      require Whatpm::_NamedEntityList;      require Whatpm::_NamedEntityList;
2331      our $EntityChar;      our $EntityChar;
2332    
2333      while (length $entity_name < 10 and      while (length $entity_name < 10 and
2334             ## NOTE: Some number greater than the maximum length of entity name             ## NOTE: Some number greater than the maximum length of entity name
2335             ((0x0041 <= $self->{next_input_character} and # a             ((0x0041 <= $self->{next_char} and # a
2336               $self->{next_input_character} <= 0x005A) or # x               $self->{next_char} <= 0x005A) or # x
2337              (0x0061 <= $self->{next_input_character} and # a              (0x0061 <= $self->{next_char} and # a
2338               $self->{next_input_character} <= 0x007A) or # z               $self->{next_char} <= 0x007A) or # z
2339              (0x0030 <= $self->{next_input_character} and # 0              (0x0030 <= $self->{next_char} and # 0
2340               $self->{next_input_character} <= 0x0039) or # 9               $self->{next_char} <= 0x0039) or # 9
2341              $self->{next_input_character} == 0x003B)) { # ;              $self->{next_char} == 0x003B)) { # ;
2342        $entity_name .= chr $self->{next_input_character};        $entity_name .= chr $self->{next_char};
2343        if (defined $EntityChar->{$entity_name}) {        if (defined $EntityChar->{$entity_name}) {
2344          if ($self->{next_input_character} == 0x003B) { # ;          if ($self->{next_char} == 0x003B) { # ;
2345              !!!cp (1020);
2346            $value = $EntityChar->{$entity_name};            $value = $EntityChar->{$entity_name};
2347            $match = 1;            $match = 1;
2348            !!!next-input-character;            !!!next-input-character;
2349            last;            last;
2350          } elsif (not $in_attr) {          } else {
2351              !!!cp (1021);
2352            $value = $EntityChar->{$entity_name};            $value = $EntityChar->{$entity_name};
2353            $match = -1;            $match = -1;
2354          } else {            !!!next-input-character;
           $value .= chr $self->{next_input_character};  
2355          }          }
2356        } else {        } else {
2357          $value .= chr $self->{next_input_character};          !!!cp (1022);
2358            $value .= chr $self->{next_char};
2359            $match *= 2;
2360            !!!next-input-character;
2361        }        }
       !!!next-input-character;  
2362      }      }
2363            
2364      if ($match > 0) {      if ($match > 0) {
2365        return {type => 'character', data => $value};        !!!cp (1023);
2366          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};
2367      } elsif ($match < 0) {      } elsif ($match < 0) {
2368        !!!parse-error (type => 'no refc');        !!!parse-error (type => 'no refc');
2369        return {type => 'character', data => $value};        if ($in_attr and $match < -1) {
2370            !!!cp (1024);
2371            return {type => CHARACTER_TOKEN, data => '&'.$entity_name};
2372          } else {
2373            !!!cp (1025);
2374            return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};
2375          }
2376      } else {      } else {
2377          !!!cp (1026);
2378        !!!parse-error (type => 'bare ero');        !!!parse-error (type => 'bare ero');
2379        ## NOTE: No characters are consumed in the spec.        ## NOTE: "No characters are consumed" in the spec.
2380        return {type => 'character', data => '&'.$value};        return {type => CHARACTER_TOKEN, data => '&'.$value};
2381      }      }
2382    } else {    } else {
2383        !!!cp (1027);
2384      ## no characters are consumed      ## no characters are consumed
2385      !!!parse-error (type => 'bare ero');      !!!parse-error (type => 'bare ero');
2386      return undef;      return undef;
# Line 1799  sub _construct_tree ($) { Line 2420  sub _construct_tree ($) {
2420        
2421    !!!next-token;    !!!next-token;
2422    
2423    $self->{insertion_mode} = 'before head';    $self->{insertion_mode} = BEFORE_HEAD_IM;
2424    undef $self->{form_element};    undef $self->{form_element};
2425    undef $self->{head_element};    undef $self->{head_element};
2426    $self->{open_elements} = [];    $self->{open_elements} = [];
# Line 1813  sub _construct_tree ($) { Line 2434  sub _construct_tree ($) {
2434  sub _tree_construction_initial ($) {  sub _tree_construction_initial ($) {
2435    my $self = shift;    my $self = shift;
2436    INITIAL: {    INITIAL: {
2437      if ($token->{type} eq 'DOCTYPE') {      if ($token->{type} == DOCTYPE_TOKEN) {
2438        ## NOTE: Conformance checkers MAY, instead of reporting "not HTML5"        ## NOTE: Conformance checkers MAY, instead of reporting "not HTML5"
2439        ## error, switch to a conformance checking mode for another        ## error, switch to a conformance checking mode for another
2440        ## language.        ## language.
# Line 1823  sub _tree_construction_initial ($) { Line 2444  sub _tree_construction_initial ($) {
2444        if (not defined $token->{name} or # <!DOCTYPE>        if (not defined $token->{name} or # <!DOCTYPE>
2445            defined $token->{public_identifier} or            defined $token->{public_identifier} or
2446            defined $token->{system_identifier}) {            defined $token->{system_identifier}) {
2447            !!!cp ('t1');
2448          !!!parse-error (type => 'not HTML5');          !!!parse-error (type => 'not HTML5');
2449        } elsif ($doctype_name ne 'HTML') {        } elsif ($doctype_name ne 'HTML') {
2450            !!!cp ('t2');
2451          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)
2452          !!!parse-error (type => 'not HTML5');          !!!parse-error (type => 'not HTML5');
2453          } else {
2454            !!!cp ('t3');
2455        }        }
2456                
2457        my $doctype = $self->{document}->create_document_type_definition        my $doctype = $self->{document}->create_document_type_definition
# Line 1839  sub _tree_construction_initial ($) { Line 2464  sub _tree_construction_initial ($) {
2464        ## ISSUE: internalSubset = null??        ## ISSUE: internalSubset = null??
2465        $self->{document}->append_child ($doctype);        $self->{document}->append_child ($doctype);
2466                
2467        if (not $token->{correct} or $doctype_name ne 'HTML') {        if ($token->{quirks} or $doctype_name ne 'HTML') {
2468            !!!cp ('t4');
2469          $self->{document}->manakai_compat_mode ('quirks');          $self->{document}->manakai_compat_mode ('quirks');
2470        } elsif (defined $token->{public_identifier}) {        } elsif (defined $token->{public_identifier}) {
2471          my $pubid = $token->{public_identifier};          my $pubid = $token->{public_identifier};
# Line 1893  sub _tree_construction_initial ($) { Line 2519  sub _tree_construction_initial ($) {
2519            "-//NETSCAPE COMM. CORP.//DTD STRICT HTML//EN" => 1,            "-//NETSCAPE COMM. CORP.//DTD STRICT HTML//EN" => 1,
2520            "-//O'REILLY AND ASSOCIATES//DTD HTML 2.0//EN" => 1,            "-//O'REILLY AND ASSOCIATES//DTD HTML 2.0//EN" => 1,
2521            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED 1.0//EN" => 1,            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED 1.0//EN" => 1,
2522              "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED RELAXED 1.0//EN" => 1,
2523              "-//SOFTQUAD SOFTWARE//DTD HOTMETAL PRO 6.0::19990601::EXTENSIONS TO HTML 4.0//EN" => 1,
2524              "-//SOFTQUAD//DTD HOTMETAL PRO 4.0::19971010::EXTENSIONS TO HTML 4.0//EN" => 1,
2525            "-//SPYGLASS//DTD HTML 2.0 EXTENDED//EN" => 1,            "-//SPYGLASS//DTD HTML 2.0 EXTENDED//EN" => 1,
2526            "-//SQ//DTD HTML 2.0 HOTMETAL + EXTENSIONS//EN" => 1,            "-//SQ//DTD HTML 2.0 HOTMETAL + EXTENSIONS//EN" => 1,
2527            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA HTML//EN" => 1,            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA HTML//EN" => 1,
# Line 1915  sub _tree_construction_initial ($) { Line 2544  sub _tree_construction_initial ($) {
2544            "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" => 1,            "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" => 1,
2545            "HTML" => 1,            "HTML" => 1,
2546          }->{$pubid}) {          }->{$pubid}) {
2547              !!!cp ('t5');
2548            $self->{document}->manakai_compat_mode ('quirks');            $self->{document}->manakai_compat_mode ('quirks');
2549          } elsif ($pubid eq "-//W3C//DTD HTML 4.01 FRAMESET//EN" or          } elsif ($pubid eq "-//W3C//DTD HTML 4.01 FRAMESET//EN" or
2550                   $pubid eq "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN") {                   $pubid eq "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN") {
2551            if (defined $token->{system_identifier}) {            if (defined $token->{system_identifier}) {
2552                !!!cp ('t6');
2553              $self->{document}->manakai_compat_mode ('quirks');              $self->{document}->manakai_compat_mode ('quirks');
2554            } else {            } else {
2555                !!!cp ('t7');
2556              $self->{document}->manakai_compat_mode ('limited quirks');              $self->{document}->manakai_compat_mode ('limited quirks');
2557            }            }
2558          } elsif ($pubid eq "-//W3C//DTD XHTML 1.0 Frameset//EN" or          } elsif ($pubid eq "-//W3C//DTD XHTML 1.0 FRAMESET//EN" or
2559                   $pubid eq "-//W3C//DTD XHTML 1.0 Transitional//EN") {                   $pubid eq "-//W3C//DTD XHTML 1.0 TRANSITIONAL//EN") {
2560              !!!cp ('t8');
2561            $self->{document}->manakai_compat_mode ('limited quirks');            $self->{document}->manakai_compat_mode ('limited quirks');
2562            } else {
2563              !!!cp ('t9');
2564          }          }
2565          } else {
2566            !!!cp ('t10');
2567        }        }
2568        if (defined $token->{system_identifier}) {        if (defined $token->{system_identifier}) {
2569          my $sysid = $token->{system_identifier};          my $sysid = $token->{system_identifier};
2570          $sysid =~ tr/A-Z/a-z/;          $sysid =~ tr/A-Z/a-z/;
2571          if ($sysid eq "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd") {          if ($sysid eq "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd") {
2572              ## TODO: Check the spec: PUBLIC "(limited quirks)" "(quirks)"
2573            $self->{document}->manakai_compat_mode ('quirks');            $self->{document}->manakai_compat_mode ('quirks');
2574              !!!cp ('t11');
2575            } else {
2576              !!!cp ('t12');
2577          }          }
2578          } else {
2579            !!!cp ('t13');
2580        }        }
2581                
2582        ## Go to the root element phase.        ## Go to the root element phase.
2583        !!!next-token;        !!!next-token;
2584        return;        return;
2585      } elsif ({      } elsif ({
2586                'start tag' => 1,                START_TAG_TOKEN, 1,
2587                'end tag' => 1,                END_TAG_TOKEN, 1,
2588                'end-of-file' => 1,                END_OF_FILE_TOKEN, 1,
2589               }->{$token->{type}}) {               }->{$token->{type}}) {
2590          !!!cp ('t14');
2591        !!!parse-error (type => 'no DOCTYPE');        !!!parse-error (type => 'no DOCTYPE');
2592        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
2593        ## Go to the root element phase        ## Go to the root element phase
2594        ## reprocess        ## reprocess
2595        return;        return;
2596      } elsif ($token->{type} eq 'character') {      } elsif ($token->{type} == CHARACTER_TOKEN) {
2597        if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D        if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D
2598          ## Ignore the token          ## Ignore the token
2599    
2600          unless (length $token->{data}) {          unless (length $token->{data}) {
2601              !!!cp ('t15');
2602            ## Stay in the phase            ## Stay in the phase
2603            !!!next-token;            !!!next-token;
2604            redo INITIAL;            redo INITIAL;
2605            } else {
2606              !!!cp ('t16');
2607          }          }
2608          } else {
2609            !!!cp ('t17');
2610        }        }
2611    
2612        !!!parse-error (type => 'no DOCTYPE');        !!!parse-error (type => 'no DOCTYPE');
# Line 1965  sub _tree_construction_initial ($) { Line 2614  sub _tree_construction_initial ($) {
2614        ## Go to the root element phase        ## Go to the root element phase
2615        ## reprocess        ## reprocess
2616        return;        return;
2617      } elsif ($token->{type} eq 'comment') {      } elsif ($token->{type} == COMMENT_TOKEN) {
2618          !!!cp ('t18');
2619        my $comment = $self->{document}->create_comment ($token->{data});        my $comment = $self->{document}->create_comment ($token->{data});
2620        $self->{document}->append_child ($comment);        $self->{document}->append_child ($comment);
2621                
# Line 1973  sub _tree_construction_initial ($) { Line 2623  sub _tree_construction_initial ($) {
2623        !!!next-token;        !!!next-token;
2624        redo INITIAL;        redo INITIAL;
2625      } else {      } else {
2626        die "$0: $token->{type}: Unknown token";        die "$0: $token->{type}: Unknown token type";
2627      }      }
2628    } # INITIAL    } # INITIAL
2629    
2630      die "$0: _tree_construction_initial: This should be never reached";
2631  } # _tree_construction_initial  } # _tree_construction_initial
2632    
2633  sub _tree_construction_root_element ($) {  sub _tree_construction_root_element ($) {
2634    my $self = shift;    my $self = shift;
2635        
2636    B: {    B: {
2637        if ($token->{type} eq 'DOCTYPE') {        if ($token->{type} == DOCTYPE_TOKEN) {
2638            !!!cp ('t19');
2639          !!!parse-error (type => 'in html:#DOCTYPE');          !!!parse-error (type => 'in html:#DOCTYPE');
2640          ## Ignore the token          ## Ignore the token
2641          ## Stay in the phase          ## Stay in the phase
2642          !!!next-token;          !!!next-token;
2643          redo B;          redo B;
2644        } elsif ($token->{type} eq 'comment') {        } elsif ($token->{type} == COMMENT_TOKEN) {
2645            !!!cp ('t20');
2646          my $comment = $self->{document}->create_comment ($token->{data});          my $comment = $self->{document}->create_comment ($token->{data});
2647          $self->{document}->append_child ($comment);          $self->{document}->append_child ($comment);
2648          ## Stay in the phase          ## Stay in the phase
2649          !!!next-token;          !!!next-token;
2650          redo B;          redo B;
2651        } elsif ($token->{type} eq 'character') {        } elsif ($token->{type} == CHARACTER_TOKEN) {
2652          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D
2653            ## Ignore the token.            ## Ignore the token.
2654    
2655            unless (length $token->{data}) {            unless (length $token->{data}) {
2656                !!!cp ('t21');
2657              ## Stay in the phase              ## Stay in the phase
2658              !!!next-token;              !!!next-token;
2659              redo B;              redo B;
2660              } else {
2661                !!!cp ('t22');
2662            }            }
2663            } else {
2664              !!!cp ('t23');
2665            }
2666    
2667            $self->{application_cache_selection}->(undef);
2668    
2669            #
2670          } elsif ($token->{type} == START_TAG_TOKEN) {
2671            if ($token->{tag_name} eq 'html' and
2672                $token->{attributes}->{manifest}) {
2673              !!!cp ('t24');
2674              $self->{application_cache_selection}
2675                   ->($token->{attributes}->{manifest}->{value});
2676              ## ISSUE: No relative reference resolution?
2677            } else {
2678              !!!cp ('t25');
2679              $self->{application_cache_selection}->(undef);
2680          }          }
2681    
2682            ## ISSUE: There is an issue in the spec
2683          #          #
2684        } elsif ({        } elsif ({
2685                  'start tag' => 1,                  END_TAG_TOKEN, 1,
2686                  'end tag' => 1,                  END_OF_FILE_TOKEN, 1,
                 'end-of-file' => 1,  
2687                 }->{$token->{type}}) {                 }->{$token->{type}}) {
2688            !!!cp ('t26');
2689            $self->{application_cache_selection}->(undef);
2690    
2691          ## ISSUE: There is an issue in the spec          ## ISSUE: There is an issue in the spec
2692          #          #
2693        } else {        } else {
2694          die "$0: $token->{type}: Unknown token";          die "$0: $token->{type}: Unknown token type";
2695        }        }
2696    
2697        my $root_element; !!!create-element ($root_element, 'html');        my $root_element; !!!create-element ($root_element, 'html');
2698        $self->{document}->append_child ($root_element);        $self->{document}->append_child ($root_element);
2699        push @{$self->{open_elements}}, [$root_element, 'html'];        push @{$self->{open_elements}}, [$root_element, 'html'];
# Line 2022  sub _tree_construction_root_element ($) Line 2701  sub _tree_construction_root_element ($)
2701        #redo B;        #redo B;
2702        return; ## Go to the main phase.        return; ## Go to the main phase.
2703    } # B    } # B
2704    
2705      die "$0: _tree_construction_root_element: This should never be reached";
2706  } # _tree_construction_root_element  } # _tree_construction_root_element
2707    
2708  sub _reset_insertion_mode ($) {  sub _reset_insertion_mode ($) {
# Line 2046  sub _reset_insertion_mode ($) { Line 2727  sub _reset_insertion_mode ($) {
2727          if (defined $self->{inner_html_node}) {          if (defined $self->{inner_html_node}) {
2728            if ($self->{inner_html_node}->[1] eq 'td' or            if ($self->{inner_html_node}->[1] eq 'td' or
2729                $self->{inner_html_node}->[1] eq 'th') {                $self->{inner_html_node}->[1] eq 'th') {
2730                !!!cp ('t27');
2731              #              #
2732            } else {            } else {
2733                !!!cp ('t28');
2734              $node = $self->{inner_html_node};              $node = $self->{inner_html_node};
2735            }            }
2736          }          }
# Line 2055  sub _reset_insertion_mode ($) { Line 2738  sub _reset_insertion_mode ($) {
2738            
2739        ## Step 4..13        ## Step 4..13
2740        my $new_mode = {        my $new_mode = {
2741                        select => 'in select',                        select => IN_SELECT_IM,
2742                        td => 'in cell',                        td => IN_CELL_IM,
2743                        th => 'in cell',                        th => IN_CELL_IM,
2744                        tr => 'in row',                        tr => IN_ROW_IM,
2745                        tbody => 'in table body',                        tbody => IN_TABLE_BODY_IM,
2746                        thead => 'in table head',                        thead => IN_TABLE_BODY_IM,
2747                        tfoot => 'in table foot',                        tfoot => IN_TABLE_BODY_IM,
2748                        caption => 'in caption',                        caption => IN_CAPTION_IM,
2749                        colgroup => 'in column group',                        colgroup => IN_COLUMN_GROUP_IM,
2750                        table => 'in table',                        table => IN_TABLE_IM,
2751                        head => 'in body', # not in head!                        head => IN_BODY_IM, # not in head!
2752                        body => 'in body',                        body => IN_BODY_IM,
2753                        frameset => 'in frameset',                        frameset => IN_FRAMESET_IM,
2754                       }->{$node->[1]};                       }->{$node->[1]};
2755        $self->{insertion_mode} = $new_mode and return if defined $new_mode;        $self->{insertion_mode} = $new_mode and return if defined $new_mode;
2756                
2757        ## Step 14        ## Step 14
2758        if ($node->[1] eq 'html') {        if ($node->[1] eq 'html') {
2759          unless (defined $self->{head_element}) {          unless (defined $self->{head_element}) {
2760            $self->{insertion_mode} = 'before head';            !!!cp ('t29');
2761              $self->{insertion_mode} = BEFORE_HEAD_IM;
2762          } else {          } else {
2763            $self->{insertion_mode} = 'after head';            ## ISSUE: Can this state be reached?
2764              !!!cp ('t30');
2765              $self->{insertion_mode} = AFTER_HEAD_IM;
2766          }          }
2767          return;          return;
2768          } else {
2769            !!!cp ('t31');
2770        }        }
2771                
2772        ## Step 15        ## Step 15
2773        $self->{insertion_mode} = 'in body' and return if $last;        $self->{insertion_mode} = IN_BODY_IM and return if $last;
2774                
2775        ## Step 16        ## Step 16
2776        $i--;        $i--;
# Line 2091  sub _reset_insertion_mode ($) { Line 2779  sub _reset_insertion_mode ($) {
2779        ## Step 17        ## Step 17
2780        redo S3;        redo S3;
2781      } # S3      } # S3
2782    
2783      die "$0: _reset_insertion_mode: This line should never be reached";
2784  } # _reset_insertion_mode  } # _reset_insertion_mode
2785    
2786  sub _tree_construction_main ($) {  sub _tree_construction_main ($) {
2787    my $self = shift;    my $self = shift;
2788    
   my $previous_insertion_mode;  
   
2789    my $active_formatting_elements = [];    my $active_formatting_elements = [];
2790    
2791    my $reconstruct_active_formatting_elements = sub { # MUST    my $reconstruct_active_formatting_elements = sub { # MUST
# Line 2114  sub _tree_construction_main ($) { Line 2802  sub _tree_construction_main ($) {
2802      return if $entry->[0] eq '#marker';      return if $entry->[0] eq '#marker';
2803      for (@{$self->{open_elements}}) {      for (@{$self->{open_elements}}) {
2804        if ($entry->[0] eq $_->[0]) {        if ($entry->[0] eq $_->[0]) {
2805            !!!cp ('t32');
2806          return;          return;
2807        }        }
2808      }      }
# Line 2128  sub _tree_construction_main ($) { Line 2817  sub _tree_construction_main ($) {
2817    
2818        ## Step 6        ## Step 6
2819        if ($entry->[0] eq '#marker') {        if ($entry->[0] eq '#marker') {
2820            !!!cp ('t33_1');
2821          #          #
2822        } else {        } else {
2823          my $in_open_elements;          my $in_open_elements;
2824          OE: for (@{$self->{open_elements}}) {          OE: for (@{$self->{open_elements}}) {
2825            if ($entry->[0] eq $_->[0]) {            if ($entry->[0] eq $_->[0]) {
2826                !!!cp ('t33');
2827              $in_open_elements = 1;              $in_open_elements = 1;
2828              last OE;              last OE;
2829            }            }
2830          }          }
2831          if ($in_open_elements) {          if ($in_open_elements) {
2832              !!!cp ('t34');
2833            #            #
2834          } else {          } else {
2835              ## NOTE: <!DOCTYPE HTML><p><b><i><u></p> <p>X
2836              !!!cp ('t35');
2837            redo S4;            redo S4;
2838          }          }
2839        }        }
# Line 2162  sub _tree_construction_main ($) { Line 2856  sub _tree_construction_main ($) {
2856    
2857        ## Step 11        ## Step 11
2858        unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {        unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {
2859            !!!cp ('t36');
2860          ## Step 7'          ## Step 7'
2861          $i++;          $i++;
2862          $entry = $active_formatting_elements->[$i];          $entry = $active_formatting_elements->[$i];
2863                    
2864          redo S7;          redo S7;
2865        }        }
2866    
2867          !!!cp ('t37');
2868      } # S7      } # S7
2869    }; # $reconstruct_active_formatting_elements    }; # $reconstruct_active_formatting_elements
2870    
2871    my $clear_up_to_marker = sub {    my $clear_up_to_marker = sub {
2872      for (reverse 0..$#$active_formatting_elements) {      for (reverse 0..$#$active_formatting_elements) {
2873        if ($active_formatting_elements->[$_]->[0] eq '#marker') {        if ($active_formatting_elements->[$_]->[0] eq '#marker') {
2874            !!!cp ('t38');
2875          splice @$active_formatting_elements, $_;          splice @$active_formatting_elements, $_;
2876          return;          return;
2877        }        }
2878      }      }
2879    
2880        !!!cp ('t39');
2881    }; # $clear_up_to_marker    }; # $clear_up_to_marker
2882    
2883    my $parse_rcdata = sub ($$) {    my $parse_rcdata = sub ($$) {
# Line 2192  sub _tree_construction_main ($) { Line 2892  sub _tree_construction_main ($) {
2892      $insert->($el); # /context node/->append_child ($el)      $insert->($el); # /context node/->append_child ($el)
2893    
2894      ## Step 3      ## Step 3
2895      $self->{content_model_flag} = $content_model_flag; # CDATA or RCDATA      $self->{content_model} = $content_model_flag; # CDATA or RCDATA
2896      delete $self->{escape}; # MUST      delete $self->{escape}; # MUST
2897    
2898      ## Step 4      ## Step 4
2899      my $text = '';      my $text = '';
2900      !!!next-token;      !!!next-token;
2901      while ($token->{type} eq 'character') { # or until stop tokenizing      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing
2902          !!!cp ('t40');
2903        $text .= $token->{data};        $text .= $token->{data};
2904        !!!next-token;        !!!next-token;
2905      }      }
2906    
2907      ## Step 5      ## Step 5
2908      if (length $text) {      if (length $text) {
2909          !!!cp ('t41');
2910        my $text = $self->{document}->create_text_node ($text);        my $text = $self->{document}->create_text_node ($text);
2911        $el->append_child ($text);        $el->append_child ($text);
2912      }      }
2913    
2914      ## Step 6      ## Step 6
2915      $self->{content_model_flag} = 'PCDATA';      $self->{content_model} = PCDATA_CONTENT_MODEL;
2916    
2917      ## Step 7      ## Step 7
2918      if ($token->{type} eq 'end tag' and $token->{tag_name} eq $start_tag_name) {      if ($token->{type} == END_TAG_TOKEN and
2919            $token->{tag_name} eq $start_tag_name) {
2920          !!!cp ('t42');
2921        ## Ignore the token        ## Ignore the token
2922        } elsif ($content_model_flag == CDATA_CONTENT_MODEL) {
2923          !!!cp ('t43');
2924          !!!parse-error (type => 'in CDATA:#'.$token->{type});
2925        } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {
2926          !!!cp ('t44');
2927          !!!parse-error (type => 'in RCDATA:#'.$token->{type});
2928      } else {      } else {
2929        !!!parse-error (type => 'in '.$content_model_flag.':#'.$token->{type});        die "$0: $content_model_flag in parse_rcdata";
2930      }      }
2931      !!!next-token;      !!!next-token;
2932    }; # $parse_rcdata    }; # $parse_rcdata
# Line 2227  sub _tree_construction_main ($) { Line 2937  sub _tree_construction_main ($) {
2937      !!!create-element ($script_el, 'script', $token->{attributes});      !!!create-element ($script_el, 'script', $token->{attributes});
2938      ## TODO: mark as "parser-inserted"      ## TODO: mark as "parser-inserted"
2939    
2940      $self->{content_model_flag} = 'CDATA';      $self->{content_model} = CDATA_CONTENT_MODEL;
2941      delete $self->{escape}; # MUST      delete $self->{escape}; # MUST
2942            
2943      my $text = '';      my $text = '';
2944      !!!next-token;      !!!next-token;
2945      while ($token->{type} eq 'character') {      while ($token->{type} == CHARACTER_TOKEN) {
2946          !!!cp ('t45');
2947        $text .= $token->{data};        $text .= $token->{data};
2948        !!!next-token;        !!!next-token;
2949      } # stop if non-character token or tokenizer stops tokenising      } # stop if non-character token or tokenizer stops tokenising
2950      if (length $text) {      if (length $text) {
2951          !!!cp ('t46');
2952        $script_el->manakai_append_text ($text);        $script_el->manakai_append_text ($text);
2953      }      }
2954                                
2955      $self->{content_model_flag} = 'PCDATA';      $self->{content_model} = PCDATA_CONTENT_MODEL;
2956    
2957      if ($token->{type} eq 'end tag' and      if ($token->{type} == END_TAG_TOKEN and
2958          $token->{tag_name} eq 'script') {          $token->{tag_name} eq 'script') {
2959          !!!cp ('t47');
2960        ## Ignore the token        ## Ignore the token
2961      } else {      } else {
2962          !!!cp ('t48');
2963        !!!parse-error (type => 'in CDATA:#'.$token->{type});        !!!parse-error (type => 'in CDATA:#'.$token->{type});
2964        ## ISSUE: And ignore?        ## ISSUE: And ignore?
2965        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
2966      }      }
2967            
2968      if (defined $self->{inner_html_node}) {      if (defined $self->{inner_html_node}) {
2969          !!!cp ('t49');
2970        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
2971      } else {      } else {
2972          !!!cp ('t50');
2973        ## TODO: $old_insertion_point = current insertion point        ## TODO: $old_insertion_point = current insertion point
2974        ## TODO: insertion point = just before the next input character        ## TODO: insertion point = just before the next input character
2975    
# Line 2276  sub _tree_construction_main ($) { Line 2992  sub _tree_construction_main ($) {
2992        my $formatting_element_i_in_active;        my $formatting_element_i_in_active;
2993        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
2994          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {
2995              !!!cp ('t51');
2996            $formatting_element = $active_formatting_elements->[$_];            $formatting_element = $active_formatting_elements->[$_];
2997            $formatting_element_i_in_active = $_;            $formatting_element_i_in_active = $_;
2998            last AFE;            last AFE;
2999          } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {          } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {
3000              !!!cp ('t52');
3001            last AFE;            last AFE;
3002          }          }
3003        } # AFE        } # AFE
3004        unless (defined $formatting_element) {        unless (defined $formatting_element) {
3005            !!!cp ('t53');
3006          !!!parse-error (type => 'unmatched end tag:'.$tag_name);          !!!parse-error (type => 'unmatched end tag:'.$tag_name);
3007          ## Ignore the token          ## Ignore the token
3008          !!!next-token;          !!!next-token;
# Line 2296  sub _tree_construction_main ($) { Line 3015  sub _tree_construction_main ($) {
3015          my $node = $self->{open_elements}->[$_];          my $node = $self->{open_elements}->[$_];
3016          if ($node->[0] eq $formatting_element->[0]) {          if ($node->[0] eq $formatting_element->[0]) {
3017            if ($in_scope) {            if ($in_scope) {
3018                !!!cp ('t54');
3019              $formatting_element_i_in_open = $_;              $formatting_element_i_in_open = $_;
3020              last INSCOPE;              last INSCOPE;
3021            } else { # in open elements but not in scope            } else { # in open elements but not in scope
3022                !!!cp ('t55');
3023              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3024              ## Ignore the token              ## Ignore the token
3025              !!!next-token;              !!!next-token;
# Line 2308  sub _tree_construction_main ($) { Line 3029  sub _tree_construction_main ($) {
3029                    table => 1, caption => 1, td => 1, th => 1,                    table => 1, caption => 1, td => 1, th => 1,
3030                    button => 1, marquee => 1, object => 1, html => 1,                    button => 1, marquee => 1, object => 1, html => 1,
3031                   }->{$node->[1]}) {                   }->{$node->[1]}) {
3032              !!!cp ('t56');
3033            $in_scope = 0;            $in_scope = 0;
3034          }          }
3035        } # INSCOPE        } # INSCOPE
3036        unless (defined $formatting_element_i_in_open) {        unless (defined $formatting_element_i_in_open) {
3037            !!!cp ('t57');
3038          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3039          pop @$active_formatting_elements; # $formatting_element          pop @$active_formatting_elements; # $formatting_element
3040          !!!next-token; ## TODO: ok?          !!!next-token; ## TODO: ok?
3041          return;          return;
3042        }        }
3043        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
3044            !!!cp ('t58');
3045          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3046        }        }
3047                
# Line 2330  sub _tree_construction_main ($) { Line 3054  sub _tree_construction_main ($) {
3054              #not $phrasing_category->{$node->[1]} and              #not $phrasing_category->{$node->[1]} and
3055              ($special_category->{$node->[1]} or              ($special_category->{$node->[1]} or
3056               $scoping_category->{$node->[1]})) {               $scoping_category->{$node->[1]})) {
3057              !!!cp ('t59');
3058            $furthest_block = $node;            $furthest_block = $node;
3059            $furthest_block_i_in_open = $_;            $furthest_block_i_in_open = $_;
3060          } elsif ($node->[0] eq $formatting_element->[0]) {          } elsif ($node->[0] eq $formatting_element->[0]) {
3061              !!!cp ('t60');
3062            last OE;            last OE;
3063          }          }
3064        } # OE        } # OE
3065                
3066        ## Step 3        ## Step 3
3067        unless (defined $furthest_block) { # MUST        unless (defined $furthest_block) { # MUST
3068            !!!cp ('t61');
3069          splice @{$self->{open_elements}}, $formatting_element_i_in_open;          splice @{$self->{open_elements}}, $formatting_element_i_in_open;
3070          splice @$active_formatting_elements, $formatting_element_i_in_active, 1;          splice @$active_formatting_elements, $formatting_element_i_in_active, 1;
3071          !!!next-token;          !!!next-token;
# Line 2351  sub _tree_construction_main ($) { Line 3078  sub _tree_construction_main ($) {
3078        ## Step 5        ## Step 5
3079        my $furthest_block_parent = $furthest_block->[0]->parent_node;        my $furthest_block_parent = $furthest_block->[0]->parent_node;
3080        if (defined $furthest_block_parent) {        if (defined $furthest_block_parent) {
3081            !!!cp ('t62');
3082          $furthest_block_parent->remove_child ($furthest_block->[0]);          $furthest_block_parent->remove_child ($furthest_block->[0]);
3083        }        }
3084                
# Line 2373  sub _tree_construction_main ($) { Line 3101  sub _tree_construction_main ($) {
3101          S7S2: {          S7S2: {
3102            for (reverse 0..$#$active_formatting_elements) {            for (reverse 0..$#$active_formatting_elements) {
3103              if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {              if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
3104                  !!!cp ('t63');
3105                $node_i_in_active = $_;                $node_i_in_active = $_;
3106                last S7S2;                last S7S2;
3107              }              }
# Line 2386  sub _tree_construction_main ($) { Line 3115  sub _tree_construction_main ($) {
3115                    
3116          ## Step 4          ## Step 4
3117          if ($last_node->[0] eq $furthest_block->[0]) {          if ($last_node->[0] eq $furthest_block->[0]) {
3118              !!!cp ('t64');
3119            $bookmark_prev_el = $node->[0];            $bookmark_prev_el = $node->[0];
3120          }          }
3121                    
3122          ## Step 5          ## Step 5
3123          if ($node->[0]->has_child_nodes ()) {          if ($node->[0]->has_child_nodes ()) {
3124              !!!cp ('t65');
3125            my $clone = [$node->[0]->clone_node (0), $node->[1]];            my $clone = [$node->[0]->clone_node (0), $node->[1]];
3126            $active_formatting_elements->[$node_i_in_active] = $clone;            $active_formatting_elements->[$node_i_in_active] = $clone;
3127            $self->{open_elements}->[$node_i_in_open] = $clone;            $self->{open_elements}->[$node_i_in_open] = $clone;
# Line 2425  sub _tree_construction_main ($) { Line 3156  sub _tree_construction_main ($) {
3156        my $i;        my $i;
3157        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
3158          if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {          if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {
3159              !!!cp ('t66');
3160            splice @$active_formatting_elements, $_, 1;            splice @$active_formatting_elements, $_, 1;
3161            $i-- and last AFE if defined $i;            $i-- and last AFE if defined $i;
3162          } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {          } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {
3163              !!!cp ('t67');
3164            $i = $_;            $i = $_;
3165          }          }
3166        } # AFE        } # AFE
# Line 2437  sub _tree_construction_main ($) { Line 3170  sub _tree_construction_main ($) {
3170        undef $i;        undef $i;
3171        OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
3172          if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {          if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {
3173              !!!cp ('t68');
3174            splice @{$self->{open_elements}}, $_, 1;            splice @{$self->{open_elements}}, $_, 1;
3175            $i-- and last OE if defined $i;            $i-- and last OE if defined $i;
3176          } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {          } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {
3177              !!!cp ('t69');
3178            $i = $_;            $i = $_;
3179          }          }
3180        } # OE        } # OE
# Line 2467  sub _tree_construction_main ($) { Line 3202  sub _tree_construction_main ($) {
3202                             if ($self->{open_elements}->[$_]->[1] eq 'table') {                             if ($self->{open_elements}->[$_]->[1] eq 'table') {
3203                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3204                               if (defined $parent and $parent->node_type == 1) {                               if (defined $parent and $parent->node_type == 1) {
3205                                   !!!cp ('t70');
3206                                 $foster_parent_element = $parent;                                 $foster_parent_element = $parent;
3207                                 $next_sibling = $self->{open_elements}->[$_]->[0];                                 $next_sibling = $self->{open_elements}->[$_]->[0];
3208                               } else {                               } else {
3209                                   !!!cp ('t71');
3210                                 $foster_parent_element                                 $foster_parent_element
3211                                   = $self->{open_elements}->[$_ - 1]->[0];                                   = $self->{open_elements}->[$_ - 1]->[0];
3212                               }                               }
# Line 2481  sub _tree_construction_main ($) { Line 3218  sub _tree_construction_main ($) {
3218                           $foster_parent_element->insert_before                           $foster_parent_element->insert_before
3219                             ($child, $next_sibling);                             ($child, $next_sibling);
3220                         } else {                         } else {
3221                             !!!cp ('t72');
3222                           $self->{open_elements}->[-1]->[0]->append_child ($child);                           $self->{open_elements}->[-1]->[0]->append_child ($child);
3223                         }                         }
3224    }; # $insert_to_foster    }; # $insert_to_foster
3225    
3226    my $in_body = sub {    my $insert;
3227      my $insert = shift;  
3228      if ($token->{type} eq 'start tag') {    B: {
3229        if ($token->{type} == DOCTYPE_TOKEN) {
3230          !!!cp ('t73');
3231          !!!parse-error (type => 'DOCTYPE in the middle');
3232          ## Ignore the token
3233          ## Stay in the phase
3234          !!!next-token;
3235          redo B;
3236        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
3237          if ($self->{insertion_mode} & AFTER_HTML_IMS) {
3238            !!!cp ('t74');
3239            #
3240          } else {
3241            ## Generate implied end tags
3242            if ({
3243                 dd => 1, dt => 1, li => 1, p => 1, td => 1, th => 1, tr => 1,
3244                 tbody => 1, tfoot=> 1, thead => 1,
3245                }->{$self->{open_elements}->[-1]->[1]}) {
3246              !!!cp ('t75');
3247              !!!back-token;
3248              $token = {type => END_TAG_TOKEN, tag_name => $self->{open_elements}->[-1]->[1]};
3249              redo B;
3250            }
3251            
3252            if (@{$self->{open_elements}} > 2 or
3253                (@{$self->{open_elements}} == 2 and $self->{open_elements}->[1]->[1] ne 'body')) {
3254              !!!cp ('t76');
3255              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3256            } elsif (defined $self->{inner_html_node} and
3257                     @{$self->{open_elements}} > 1 and
3258                     $self->{open_elements}->[1]->[1] ne 'body') {
3259    ## ISSUE: This case is never reached.
3260              !!!cp ('t77');
3261              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3262            } else {
3263              !!!cp ('t78');
3264            }
3265    
3266            ## ISSUE: There is an issue in the spec.
3267          }
3268    
3269          ## Stop parsing
3270          last B;
3271        } elsif ($token->{type} == START_TAG_TOKEN and
3272                 $token->{tag_name} eq 'html') {
3273          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
3274            !!!cp ('t79');
3275            ## Turn into the main phase
3276            !!!parse-error (type => 'after html:html');
3277            $self->{insertion_mode} = AFTER_BODY_IM;
3278          } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
3279            !!!cp ('t80');
3280            ## Turn into the main phase
3281            !!!parse-error (type => 'after html:html');
3282            $self->{insertion_mode} = AFTER_FRAMESET_IM;
3283          } else {
3284            !!!cp ('t81');
3285          }
3286    
3287    ## ISSUE: "aa<html>" is not a parse error.
3288    ## ISSUE: "<html>" in fragment is not a parse error.
3289          unless ($token->{first_start_tag}) {
3290            !!!cp ('t82');
3291            !!!parse-error (type => 'not first start tag');
3292          } else {
3293            !!!cp ('t83');
3294          }
3295          my $top_el = $self->{open_elements}->[0]->[0];
3296          for my $attr_name (keys %{$token->{attributes}}) {
3297            unless ($top_el->has_attribute_ns (undef, $attr_name)) {
3298              !!!cp ('t84');
3299              $top_el->set_attribute_ns
3300                (undef, [undef, $attr_name],
3301                 $token->{attributes}->{$attr_name}->{value});
3302            }
3303          }
3304          !!!next-token;
3305          redo B;
3306        } elsif ($token->{type} == COMMENT_TOKEN) {
3307          my $comment = $self->{document}->create_comment ($token->{data});
3308          if ($self->{insertion_mode} & AFTER_HTML_IMS) {
3309            !!!cp ('t85');
3310            $self->{document}->append_child ($comment);
3311          } elsif ($self->{insertion_mode} == AFTER_BODY_IM) {
3312            !!!cp ('t86');
3313            $self->{open_elements}->[0]->[0]->append_child ($comment);
3314          } else {
3315            !!!cp ('t87');
3316            $self->{open_elements}->[-1]->[0]->append_child ($comment);
3317          }
3318          !!!next-token;
3319          redo B;
3320        } elsif ($self->{insertion_mode} & HEAD_IMS) {
3321          if ($token->{type} == CHARACTER_TOKEN) {
3322            if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
3323              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
3324              unless (length $token->{data}) {
3325                !!!cp ('t88');
3326                !!!next-token;
3327                redo B;
3328              }
3329            }
3330    
3331            if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3332              !!!cp ('t89');
3333              ## As if <head>
3334              !!!create-element ($self->{head_element}, 'head');
3335              $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3336              push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3337    
3338              ## Reprocess in the "in head" insertion mode...
3339              pop @{$self->{open_elements}};
3340    
3341              ## Reprocess in the "after head" insertion mode...
3342            } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3343              !!!cp ('t90');
3344              ## As if </noscript>
3345              pop @{$self->{open_elements}};
3346              !!!parse-error (type => 'in noscript:#character');
3347              
3348              ## Reprocess in the "in head" insertion mode...
3349              ## As if </head>
3350              pop @{$self->{open_elements}};
3351    
3352              ## Reprocess in the "after head" insertion mode...
3353            } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3354              !!!cp ('t91');
3355              pop @{$self->{open_elements}};
3356    
3357              ## Reprocess in the "after head" insertion mode...
3358            } else {
3359              !!!cp ('t92');
3360            }
3361    
3362                ## "after head" insertion mode
3363                ## As if <body>
3364                !!!insert-element ('body');
3365                $self->{insertion_mode} = IN_BODY_IM;
3366                ## reprocess
3367                redo B;
3368              } elsif ($token->{type} == START_TAG_TOKEN) {
3369                if ($token->{tag_name} eq 'head') {
3370                  if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3371                    !!!cp ('t93');
3372                    !!!create-element ($self->{head_element}, $token->{tag_name}, $token->{attributes});
3373                    $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3374                    push @{$self->{open_elements}}, [$self->{head_element}, $token->{tag_name}];
3375                    $self->{insertion_mode} = IN_HEAD_IM;
3376                    !!!next-token;
3377                    redo B;
3378                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3379                    !!!cp ('t94');
3380                    #
3381                  } else {
3382                    !!!cp ('t95');
3383                    !!!parse-error (type => 'in head:head'); # or in head noscript
3384                    ## Ignore the token
3385                    !!!next-token;
3386                    redo B;
3387                  }
3388                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3389                  !!!cp ('t96');
3390                  ## As if <head>
3391                  !!!create-element ($self->{head_element}, 'head');
3392                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3393                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3394    
3395                  $self->{insertion_mode} = IN_HEAD_IM;
3396                  ## Reprocess in the "in head" insertion mode...
3397                } else {
3398                  !!!cp ('t97');
3399                }
3400    
3401                if ($token->{tag_name} eq 'base') {
3402                  if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3403                    !!!cp ('t98');
3404                    ## As if </noscript>
3405                    pop @{$self->{open_elements}};
3406                    !!!parse-error (type => 'in noscript:base');
3407                  
3408                    $self->{insertion_mode} = IN_HEAD_IM;
3409                    ## Reprocess in the "in head" insertion mode...
3410                  } else {
3411                    !!!cp ('t99');
3412                  }
3413    
3414                  ## NOTE: There is a "as if in head" code clone.
3415                  if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3416                    !!!cp ('t100');
3417                    !!!parse-error (type => 'after head:'.$token->{tag_name});
3418                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3419                  } else {
3420                    !!!cp ('t101');
3421                  }
3422                  !!!insert-element ($token->{tag_name}, $token->{attributes});
3423                  pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
3424                  pop @{$self->{open_elements}}
3425                      if $self->{insertion_mode} == AFTER_HEAD_IM;
3426                  !!!next-token;
3427                  redo B;
3428                } elsif ($token->{tag_name} eq 'link') {
3429                  ## NOTE: There is a "as if in head" code clone.
3430                  if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3431                    !!!cp ('t102');
3432                    !!!parse-error (type => 'after head:'.$token->{tag_name});
3433                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3434                  } else {
3435                    !!!cp ('t103');
3436                  }
3437                  !!!insert-element ($token->{tag_name}, $token->{attributes});
3438                  pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
3439                  pop @{$self->{open_elements}}
3440                      if $self->{insertion_mode} == AFTER_HEAD_IM;
3441                  !!!next-token;
3442                  redo B;
3443                } elsif ($token->{tag_name} eq 'meta') {
3444                  ## NOTE: There is a "as if in head" code clone.
3445                  if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3446                    !!!cp ('t104');
3447                    !!!parse-error (type => 'after head:'.$token->{tag_name});
3448                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3449                  } else {
3450                    !!!cp ('t105');
3451                  }
3452                  !!!insert-element ($token->{tag_name}, $token->{attributes});
3453                  my $meta_el = pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
3454    
3455                  unless ($self->{confident}) {
3456                    if ($token->{attributes}->{charset}) { ## TODO: And if supported
3457                      !!!cp ('t106');
3458                      $self->{change_encoding}
3459                          ->($self, $token->{attributes}->{charset}->{value});
3460                      
3461                      $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
3462                          ->set_user_data (manakai_has_reference =>
3463                                               $token->{attributes}->{charset}
3464                                                   ->{has_reference});
3465                    } elsif ($token->{attributes}->{content}) {
3466                      ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.
3467                      if ($token->{attributes}->{content}->{value}
3468                          =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
3469                              [\x09-\x0D\x20]*=
3470                              [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
3471                              ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {
3472                        !!!cp ('t107');
3473                        $self->{change_encoding}
3474                            ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);
3475                        $meta_el->[0]->get_attribute_node_ns (undef, 'content')
3476                            ->set_user_data (manakai_has_reference =>
3477                                                 $token->{attributes}->{content}
3478                                                       ->{has_reference});
3479                      } else {
3480                        !!!cp ('t108');
3481                      }
3482                    }
3483                  } else {
3484                    if ($token->{attributes}->{charset}) {
3485                      !!!cp ('t109');
3486                      $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
3487                          ->set_user_data (manakai_has_reference =>
3488                                               $token->{attributes}->{charset}
3489                                                   ->{has_reference});
3490                    }
3491                    if ($token->{attributes}->{content}) {
3492                      !!!cp ('t110');
3493                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')
3494                          ->set_user_data (manakai_has_reference =>
3495                                               $token->{attributes}->{content}
3496                                                   ->{has_reference});
3497                    }
3498                  }
3499    
3500                  pop @{$self->{open_elements}}
3501                      if $self->{insertion_mode} == AFTER_HEAD_IM;
3502                  !!!next-token;
3503                  redo B;
3504                } elsif ($token->{tag_name} eq 'title') {
3505                  if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3506                    !!!cp ('t111');
3507                    ## As if </noscript>
3508                    pop @{$self->{open_elements}};
3509                    !!!parse-error (type => 'in noscript:title');
3510                  
3511                    $self->{insertion_mode} = IN_HEAD_IM;
3512                    ## Reprocess in the "in head" insertion mode...
3513                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3514                    !!!cp ('t112');
3515                    !!!parse-error (type => 'after head:'.$token->{tag_name});
3516                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3517                  } else {
3518                    !!!cp ('t113');
3519                  }
3520    
3521                  ## NOTE: There is a "as if in head" code clone.
3522                  my $parent = defined $self->{head_element} ? $self->{head_element}
3523                      : $self->{open_elements}->[-1]->[0];
3524                  $parse_rcdata->(RCDATA_CONTENT_MODEL,
3525                                  sub { $parent->append_child ($_[0]) });
3526                  pop @{$self->{open_elements}}
3527                      if $self->{insertion_mode} == AFTER_HEAD_IM;
3528                  redo B;
3529                } elsif ($token->{tag_name} eq 'style') {
3530                  ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and
3531                  ## insertion mode IN_HEAD_IM)
3532                  ## NOTE: There is a "as if in head" code clone.
3533                  if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3534                    !!!cp ('t114');
3535                    !!!parse-error (type => 'after head:'.$token->{tag_name});
3536                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3537                  } else {
3538                    !!!cp ('t115');
3539                  }
3540                  $parse_rcdata->(CDATA_CONTENT_MODEL, $insert_to_current);
3541                  pop @{$self->{open_elements}}
3542                      if $self->{insertion_mode} == AFTER_HEAD_IM;
3543                  redo B;
3544                } elsif ($token->{tag_name} eq 'noscript') {
3545                  if ($self->{insertion_mode} == IN_HEAD_IM) {
3546                    !!!cp ('t116');
3547                    ## NOTE: and scripting is disalbed
3548                    !!!insert-element ($token->{tag_name}, $token->{attributes});
3549                    $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;
3550                    !!!next-token;
3551                    redo B;
3552                  } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3553                    !!!cp ('t117');
3554                    !!!parse-error (type => 'in noscript:noscript');
3555                    ## Ignore the token
3556                    !!!next-token;
3557                    redo B;
3558                  } else {
3559                    !!!cp ('t118');
3560                    #
3561                  }
3562                } elsif ($token->{tag_name} eq 'script') {
3563                  if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3564                    !!!cp ('t119');
3565                    ## As if </noscript>
3566                    pop @{$self->{open_elements}};
3567                    !!!parse-error (type => 'in noscript:script');
3568                  
3569                    $self->{insertion_mode} = IN_HEAD_IM;
3570                    ## Reprocess in the "in head" insertion mode...
3571                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3572                    !!!cp ('t120');
3573                    !!!parse-error (type => 'after head:'.$token->{tag_name});
3574                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3575                  } else {
3576                    !!!cp ('t121');
3577                  }
3578    
3579                  ## NOTE: There is a "as if in head" code clone.
3580                  $script_start_tag->($insert_to_current);
3581                  pop @{$self->{open_elements}}
3582                      if $self->{insertion_mode} == AFTER_HEAD_IM;
3583                  redo B;
3584                } elsif ($token->{tag_name} eq 'body' or
3585                         $token->{tag_name} eq 'frameset') {
3586                  if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3587                    !!!cp ('t122');
3588                    ## As if </noscript>
3589                    pop @{$self->{open_elements}};
3590                    !!!parse-error (type => 'in noscript:'.$token->{tag_name});
3591                    
3592                    ## Reprocess in the "in head" insertion mode...
3593                    ## As if </head>
3594                    pop @{$self->{open_elements}};
3595                    
3596                    ## Reprocess in the "after head" insertion mode...
3597                  } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3598                    !!!cp ('t124');
3599                    pop @{$self->{open_elements}};
3600                    
3601                    ## Reprocess in the "after head" insertion mode...
3602                  } else {
3603                    !!!cp ('t125');
3604                  }
3605    
3606                  ## "after head" insertion mode
3607                  !!!insert-element ($token->{tag_name}, $token->{attributes});
3608                  if ($token->{tag_name} eq 'body') {
3609                    !!!cp ('t126');
3610                    $self->{insertion_mode} = IN_BODY_IM;
3611                  } elsif ($token->{tag_name} eq 'frameset') {
3612                    !!!cp ('t127');
3613                    $self->{insertion_mode} = IN_FRAMESET_IM;
3614                  } else {
3615                    die "$0: tag name: $self->{tag_name}";
3616                  }
3617                  !!!next-token;
3618                  redo B;
3619                } else {
3620                  !!!cp ('t128');
3621                  #
3622                }
3623    
3624                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3625                  !!!cp ('t129');
3626                  ## As if </noscript>
3627                  pop @{$self->{open_elements}};
3628                  !!!parse-error (type => 'in noscript:/'.$token->{tag_name});
3629                  
3630                  ## Reprocess in the "in head" insertion mode...
3631                  ## As if </head>
3632                  pop @{$self->{open_elements}};
3633    
3634                  ## Reprocess in the "after head" insertion mode...
3635                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3636                  !!!cp ('t130');
3637                  ## As if </head>
3638                  pop @{$self->{open_elements}};
3639    
3640                  ## Reprocess in the "after head" insertion mode...
3641                } else {
3642                  !!!cp ('t131');
3643                }
3644    
3645                ## "after head" insertion mode
3646                ## As if <body>
3647                !!!insert-element ('body');
3648                $self->{insertion_mode} = IN_BODY_IM;
3649                ## reprocess
3650                redo B;
3651              } elsif ($token->{type} == END_TAG_TOKEN) {
3652                if ($token->{tag_name} eq 'head') {
3653                  if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3654                    !!!cp ('t132');
3655                    ## As if <head>
3656                    !!!create-element ($self->{head_element}, 'head');
3657                    $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3658                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3659    
3660                    ## Reprocess in the "in head" insertion mode...
3661                    pop @{$self->{open_elements}};
3662                    $self->{insertion_mode} = AFTER_HEAD_IM;
3663                    !!!next-token;
3664                    redo B;
3665                  } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3666                    !!!cp ('t133');
3667                    ## As if </noscript>
3668                    pop @{$self->{open_elements}};
3669                    !!!parse-error (type => 'in noscript:/head');
3670                    
3671                    ## Reprocess in the "in head" insertion mode...
3672                    pop @{$self->{open_elements}};
3673                    $self->{insertion_mode} = AFTER_HEAD_IM;
3674                    !!!next-token;
3675                    redo B;
3676                  } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3677                    !!!cp ('t134');
3678                    pop @{$self->{open_elements}};
3679                    $self->{insertion_mode} = AFTER_HEAD_IM;
3680                    !!!next-token;
3681                    redo B;
3682                  } else {
3683                    !!!cp ('t135');
3684                    #
3685                  }
3686                } elsif ($token->{tag_name} eq 'noscript') {
3687                  if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3688                    !!!cp ('t136');
3689                    pop @{$self->{open_elements}};
3690                    $self->{insertion_mode} = IN_HEAD_IM;
3691                    !!!next-token;
3692                    redo B;
3693                  } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3694                    !!!cp ('t137');
3695                    !!!parse-error (type => 'unmatched end tag:noscript');
3696                    ## Ignore the token ## ISSUE: An issue in the spec.
3697                    !!!next-token;
3698                    redo B;
3699                  } else {
3700                    !!!cp ('t138');
3701                    #
3702                  }
3703                } elsif ({
3704                          body => 1, html => 1,
3705                         }->{$token->{tag_name}}) {
3706                  if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3707                    !!!cp ('t139');
3708                    ## As if <head>
3709                    !!!create-element ($self->{head_element}, 'head');
3710                    $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3711                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3712    
3713                    $self->{insertion_mode} = IN_HEAD_IM;
3714                    ## Reprocess in the "in head" insertion mode...
3715                  } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3716                    !!!cp ('t140');
3717                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3718                    ## Ignore the token
3719                    !!!next-token;
3720                    redo B;
3721                  } else {
3722                    !!!cp ('t141');
3723                  }
3724                  
3725                  #
3726                } elsif ({
3727                          p => 1, br => 1,
3728                         }->{$token->{tag_name}}) {
3729                  if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3730                    !!!cp ('t142');
3731                    ## As if <head>
3732                    !!!create-element ($self->{head_element}, 'head');
3733                    $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3734                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3735    
3736                    $self->{insertion_mode} = IN_HEAD_IM;
3737                    ## Reprocess in the "in head" insertion mode...
3738                  } else {
3739                    !!!cp ('t143');
3740                  }
3741    
3742                  #
3743                } else {
3744                  if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3745                    !!!cp ('t144');
3746                    #
3747                  } else {
3748                    !!!cp ('t145');
3749                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3750                    ## Ignore the token
3751                    !!!next-token;
3752                    redo B;
3753                  }
3754                }
3755    
3756                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3757                  !!!cp ('t146');
3758                  ## As if </noscript>
3759                  pop @{$self->{open_elements}};
3760                  !!!parse-error (type => 'in noscript:/'.$token->{tag_name});
3761                  
3762                  ## Reprocess in the "in head" insertion mode...
3763                  ## As if </head>
3764                  pop @{$self->{open_elements}};
3765    
3766                  ## Reprocess in the "after head" insertion mode...
3767                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3768                  !!!cp ('t147');
3769                  ## As if </head>
3770                  pop @{$self->{open_elements}};
3771    
3772                  ## Reprocess in the "after head" insertion mode...
3773                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3774    ## ISSUE: This case cannot be reached?
3775                  !!!cp ('t148');
3776                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3777                  ## Ignore the token ## ISSUE: An issue in the spec.
3778                  !!!next-token;
3779                  redo B;
3780                } else {
3781                  !!!cp ('t149');
3782                }
3783    
3784                ## "after head" insertion mode
3785                ## As if <body>
3786                !!!insert-element ('body');
3787                $self->{insertion_mode} = IN_BODY_IM;
3788                ## reprocess
3789                redo B;
3790              } else {
3791                die "$0: $token->{type}: Unknown token type";
3792              }
3793    
3794              ## ISSUE: An issue in the spec.
3795        } elsif ($self->{insertion_mode} & BODY_IMS) {
3796              if ($token->{type} == CHARACTER_TOKEN) {
3797                !!!cp ('t150');
3798                ## NOTE: There is a code clone of "character in body".
3799                $reconstruct_active_formatting_elements->($insert_to_current);
3800                
3801                $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
3802    
3803                !!!next-token;
3804                redo B;
3805              } elsif ($token->{type} == START_TAG_TOKEN) {
3806                if ({
3807                     caption => 1, col => 1, colgroup => 1, tbody => 1,
3808                     td => 1, tfoot => 1, th => 1, thead => 1, tr => 1,
3809                    }->{$token->{tag_name}}) {
3810                  if ($self->{insertion_mode} == IN_CELL_IM) {
3811                    ## have an element in table scope
3812                    my $tn;
3813                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3814                      my $node = $self->{open_elements}->[$_];
3815                      if ($node->[1] eq 'td' or $node->[1] eq 'th') {
3816                        !!!cp ('t151');
3817                        $tn = $node->[1];
3818                        last INSCOPE;
3819                      } elsif ({
3820                                table => 1, html => 1,
3821                               }->{$node->[1]}) {
3822                        !!!cp ('t152');
3823                        last INSCOPE;
3824                      }
3825                    } # INSCOPE
3826                      unless (defined $tn) {
3827                        !!!cp ('t153');
3828    ## TODO: This error type is wrong.
3829                        !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3830                        ## Ignore the token
3831                        !!!next-token;
3832                        redo B;
3833                      }
3834                    
3835                    !!!cp ('t154');
3836                    ## Close the cell
3837                    !!!back-token; # <?>
3838                    $token = {type => END_TAG_TOKEN, tag_name => $tn};
3839                    redo B;
3840                  } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
3841                    !!!parse-error (type => 'not closed:caption');
3842                    
3843                    ## As if </caption>
3844                    ## have a table element in table scope
3845                    my $i;
3846                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3847                      my $node = $self->{open_elements}->[$_];
3848                      if ($node->[1] eq 'caption') {
3849                        !!!cp ('t155');
3850                        $i = $_;
3851                        last INSCOPE;
3852                      } elsif ({
3853                                table => 1, html => 1,
3854                               }->{$node->[1]}) {
3855                        !!!cp ('t156');
3856                        last INSCOPE;
3857                      }
3858                    } # INSCOPE
3859                      unless (defined $i) {
3860                        !!!cp ('t157');
3861                        !!!parse-error (type => 'unmatched end tag:caption');
3862                        ## Ignore the token
3863                        !!!next-token;
3864                        redo B;
3865                      }
3866                    
3867                    ## generate implied end tags
3868                    if ({
3869                         dd => 1, dt => 1, li => 1, p => 1,
3870                         td => 1, th => 1, tr => 1,
3871                         tbody => 1, tfoot=> 1, thead => 1,
3872                        }->{$self->{open_elements}->[-1]->[1]}) {
3873                      !!!cp ('t158');
3874                      !!!back-token; # <?>
3875                      $token = {type => END_TAG_TOKEN, tag_name => 'caption'};
3876                      !!!back-token;
3877                      $token = {type => END_TAG_TOKEN,
3878                                tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
3879                      redo B;
3880                    }
3881    
3882                    if ($self->{open_elements}->[-1]->[1] ne 'caption') {
3883                      !!!cp ('t159');
3884                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3885                    } else {
3886                      !!!cp ('t160');
3887                    }
3888                    
3889                    splice @{$self->{open_elements}}, $i;
3890                    
3891                    $clear_up_to_marker->();
3892                    
3893                    $self->{insertion_mode} = IN_TABLE_IM;
3894                    
3895                    ## reprocess
3896                    redo B;
3897                  } else {
3898                    !!!cp ('t161');
3899                    #
3900                  }
3901                } else {
3902                  !!!cp ('t162');
3903                  #
3904                }
3905              } elsif ($token->{type} == END_TAG_TOKEN) {
3906                if ($token->{tag_name} eq 'td' or $token->{tag_name} eq 'th') {
3907                  if ($self->{insertion_mode} == IN_CELL_IM) {
3908                    ## have an element in table scope
3909                    my $i;
3910                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3911                      my $node = $self->{open_elements}->[$_];
3912                      if ($node->[1] eq $token->{tag_name}) {
3913                        !!!cp ('t163');
3914                        $i = $_;
3915                        last INSCOPE;
3916                      } elsif ({
3917                                table => 1, html => 1,
3918                               }->{$node->[1]}) {
3919                        !!!cp ('t164');
3920                        last INSCOPE;
3921                      }
3922                    } # INSCOPE
3923                      unless (defined $i) {
3924                        !!!cp ('t165');
3925                        !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3926                        ## Ignore the token
3927                        !!!next-token;
3928                        redo B;
3929                      }
3930                    
3931                    ## generate implied end tags
3932                    if ({
3933                         dd => 1, dt => 1, li => 1, p => 1,
3934                         td => ($token->{tag_name} eq 'th'),
3935                         th => ($token->{tag_name} eq 'td'),
3936                         tr => 1,
3937                         tbody => 1, tfoot=> 1, thead => 1,
3938                        }->{$self->{open_elements}->[-1]->[1]}) {
3939                      !!!cp ('t166');
3940                      !!!back-token;
3941                      $token = {type => END_TAG_TOKEN,
3942                                tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
3943                      redo B;
3944                    }
3945                    
3946                    if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
3947                      !!!cp ('t167');
3948                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3949                    } else {
3950                      !!!cp ('t168');
3951                    }
3952                    
3953                    splice @{$self->{open_elements}}, $i;
3954                    
3955                    $clear_up_to_marker->();
3956                    
3957                    $self->{insertion_mode} = IN_ROW_IM;
3958                    
3959                    !!!next-token;
3960                    redo B;
3961                  } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
3962                    !!!cp ('t169');
3963                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3964                    ## Ignore the token
3965                    !!!next-token;
3966                    redo B;
3967                  } else {
3968                    !!!cp ('t170');
3969                    #
3970                  }
3971                } elsif ($token->{tag_name} eq 'caption') {
3972                  if ($self->{insertion_mode} == IN_CAPTION_IM) {
3973                    ## have a table element in table scope
3974                    my $i;
3975                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3976                      my $node = $self->{open_elements}->[$_];
3977                      if ($node->[1] eq $token->{tag_name}) {
3978                        !!!cp ('t171');
3979                        $i = $_;
3980                        last INSCOPE;
3981                      } elsif ({
3982                                table => 1, html => 1,
3983                               }->{$node->[1]}) {
3984                        !!!cp ('t172');
3985                        last INSCOPE;
3986                      }
3987                    } # INSCOPE
3988                      unless (defined $i) {
3989                        !!!cp ('t173');
3990                        !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3991                        ## Ignore the token
3992                        !!!next-token;
3993                        redo B;
3994                      }
3995                    
3996                    ## generate implied end tags
3997                    if ({
3998                         dd => 1, dt => 1, li => 1, p => 1,
3999                         td => 1, th => 1, tr => 1,
4000                         tbody => 1, tfoot=> 1, thead => 1,
4001                        }->{$self->{open_elements}->[-1]->[1]}) {
4002                      !!!cp ('t174');
4003                      !!!back-token;
4004                      $token = {type => END_TAG_TOKEN,
4005                                tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
4006                      redo B;
4007                    }
4008                    
4009                    if ($self->{open_elements}->[-1]->[1] ne 'caption') {
4010                      !!!cp ('t175');
4011                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4012                    } else {
4013                      !!!cp ('t176');
4014                    }
4015                    
4016                    splice @{$self->{open_elements}}, $i;
4017                    
4018                    $clear_up_to_marker->();
4019                    
4020                    $self->{insertion_mode} = IN_TABLE_IM;
4021                    
4022                    !!!next-token;
4023                    redo B;
4024                  } elsif ($self->{insertion_mode} == IN_CELL_IM) {
4025                    !!!cp ('t177');
4026                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4027                    ## Ignore the token
4028                    !!!next-token;
4029                    redo B;
4030                  } else {
4031                    !!!cp ('t178');
4032                    #
4033                  }
4034                } elsif ({
4035                          table => 1, tbody => 1, tfoot => 1,
4036                          thead => 1, tr => 1,
4037                         }->{$token->{tag_name}} and
4038                         $self->{insertion_mode} == IN_CELL_IM) {
4039                  ## have an element in table scope
4040                  my $i;
4041                  my $tn;
4042                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4043                    my $node = $self->{open_elements}->[$_];
4044                    if ($node->[1] eq $token->{tag_name}) {
4045                      !!!cp ('t179');
4046                      $i = $_;
4047                      last INSCOPE;
4048                    } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {
4049                      !!!cp ('t180');
4050                      $tn = $node->[1];
4051                      ## NOTE: There is exactly one |td| or |th| element
4052                      ## in scope in the stack of open elements by definition.
4053                    } elsif ({
4054                              table => 1, html => 1,
4055                             }->{$node->[1]}) {
4056                      !!!cp ('t181');
4057                      last INSCOPE;
4058                    }
4059                  } # INSCOPE
4060                  unless (defined $i) {
4061                    !!!cp ('t182');
4062                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4063                    ## Ignore the token
4064                    !!!next-token;
4065                    redo B;
4066                  } else {
4067                    !!!cp ('t183');
4068                  }
4069    
4070                  ## Close the cell
4071                  !!!back-token; # </?>
4072                  $token = {type => END_TAG_TOKEN, tag_name => $tn};
4073                  redo B;
4074                } elsif ($token->{tag_name} eq 'table' and
4075                         $self->{insertion_mode} == IN_CAPTION_IM) {
4076                  !!!parse-error (type => 'not closed:caption');
4077    
4078                  ## As if </caption>
4079                  ## have a table element in table scope
4080                  my $i;
4081                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4082                    my $node = $self->{open_elements}->[$_];
4083                    if ($node->[1] eq 'caption') {
4084                      !!!cp ('t184');
4085                      $i = $_;
4086                      last INSCOPE;
4087                    } elsif ({
4088                              table => 1, html => 1,
4089                             }->{$node->[1]}) {
4090                      !!!cp ('t185');
4091                      last INSCOPE;
4092                    }
4093                  } # INSCOPE
4094                  unless (defined $i) {
4095                    !!!cp ('t186');
4096                    !!!parse-error (type => 'unmatched end tag:caption');
4097                    ## Ignore the token
4098                    !!!next-token;
4099                    redo B;
4100                  }
4101                  
4102                  ## generate implied end tags
4103                  if ({
4104                       dd => 1, dt => 1, li => 1, p => 1,
4105                       td => 1, th => 1, tr => 1,
4106                       tbody => 1, tfoot=> 1, thead => 1,
4107                      }->{$self->{open_elements}->[-1]->[1]}) {
4108                    !!!cp ('t187');
4109                    !!!back-token; # </table>
4110                    $token = {type => END_TAG_TOKEN, tag_name => 'caption'};
4111                    !!!back-token;
4112                    $token = {type => END_TAG_TOKEN,
4113                              tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
4114                    redo B;
4115                  }
4116    
4117                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {
4118                    !!!cp ('t188');
4119                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4120                  } else {
4121                    !!!cp ('t189');
4122                  }
4123    
4124                  splice @{$self->{open_elements}}, $i;
4125    
4126                  $clear_up_to_marker->();
4127    
4128                  $self->{insertion_mode} = IN_TABLE_IM;
4129    
4130                  ## reprocess
4131                  redo B;
4132                } elsif ({
4133                          body => 1, col => 1, colgroup => 1, html => 1,
4134                         }->{$token->{tag_name}}) {
4135                  if ($self->{insertion_mode} & BODY_TABLE_IMS) {
4136                    !!!cp ('t190');
4137                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4138                    ## Ignore the token
4139                    !!!next-token;
4140                    redo B;
4141                  } else {
4142                    !!!cp ('t191');
4143                    #
4144                  }
4145                } elsif ({
4146                          tbody => 1, tfoot => 1,
4147                          thead => 1, tr => 1,
4148                         }->{$token->{tag_name}} and
4149                         $self->{insertion_mode} == IN_CAPTION_IM) {
4150                  !!!cp ('t192');
4151                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4152                  ## Ignore the token
4153                  !!!next-token;
4154                  redo B;
4155                } else {
4156                  !!!cp ('t193');
4157                  #
4158                }
4159          } else {
4160            die "$0: $token->{type}: Unknown token type";
4161          }
4162    
4163          $insert = $insert_to_current;
4164          #
4165        } elsif ($self->{insertion_mode} & TABLE_IMS) {
4166          if ($token->{type} == CHARACTER_TOKEN) {
4167                if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4168                  $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4169                  
4170                  unless (length $token->{data}) {
4171                    !!!cp ('t194');
4172                    !!!next-token;
4173                    redo B;
4174                  } else {
4175                    !!!cp ('t195');
4176                  }
4177                }
4178    
4179                !!!parse-error (type => 'in table:#character');
4180    
4181                ## As if in body, but insert into foster parent element
4182                ## ISSUE: Spec says that "whenever a node would be inserted
4183                ## into the current node" while characters might not be
4184                ## result in a new Text node.
4185                $reconstruct_active_formatting_elements->($insert_to_foster);
4186                
4187                if ({
4188                     table => 1, tbody => 1, tfoot => 1,
4189                     thead => 1, tr => 1,
4190                    }->{$self->{open_elements}->[-1]->[1]}) {
4191                  # MUST
4192                  my $foster_parent_element;
4193                  my $next_sibling;
4194                  my $prev_sibling;
4195                  OE: for (reverse 0..$#{$self->{open_elements}}) {
4196                    if ($self->{open_elements}->[$_]->[1] eq 'table') {
4197                      my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
4198                      if (defined $parent and $parent->node_type == 1) {
4199                        !!!cp ('t196');
4200                        $foster_parent_element = $parent;
4201                        $next_sibling = $self->{open_elements}->[$_]->[0];
4202                        $prev_sibling = $next_sibling->previous_sibling;
4203                      } else {
4204                        !!!cp ('t197');
4205                        $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];
4206                        $prev_sibling = $foster_parent_element->last_child;
4207                      }
4208                      last OE;
4209                    }
4210                  } # OE
4211                  $foster_parent_element = $self->{open_elements}->[0]->[0] and
4212                  $prev_sibling = $foster_parent_element->last_child
4213                    unless defined $foster_parent_element;
4214                  if (defined $prev_sibling and
4215                      $prev_sibling->node_type == 3) {
4216                    !!!cp ('t198');
4217                    $prev_sibling->manakai_append_text ($token->{data});
4218                  } else {
4219                    !!!cp ('t199');
4220                    $foster_parent_element->insert_before
4221                      ($self->{document}->create_text_node ($token->{data}),
4222                       $next_sibling);
4223                  }
4224                } else {
4225                  !!!cp ('t200');
4226                  $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4227                }
4228                
4229                !!!next-token;
4230                redo B;
4231          } elsif ($token->{type} == START_TAG_TOKEN) {
4232                if ({
4233                     tr => ($self->{insertion_mode} != IN_ROW_IM),
4234                     th => 1, td => 1,
4235                    }->{$token->{tag_name}}) {
4236                  if ($self->{insertion_mode} == IN_TABLE_IM) {
4237                    ## Clear back to table context
4238                    while ($self->{open_elements}->[-1]->[1] ne 'table' and
4239                           $self->{open_elements}->[-1]->[1] ne 'html') {
4240                      !!!cp ('t201');
4241                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4242                      pop @{$self->{open_elements}};
4243                    }
4244                    
4245                    !!!insert-element ('tbody');
4246                    $self->{insertion_mode} = IN_TABLE_BODY_IM;
4247                    ## reprocess in the "in table body" insertion mode...
4248                  }
4249    
4250                  if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
4251                    unless ($token->{tag_name} eq 'tr') {
4252                      !!!cp ('t202');
4253                      !!!parse-error (type => 'missing start tag:tr');
4254                    }
4255                    
4256                    ## Clear back to table body context
4257                    while (not {
4258                      tbody => 1, tfoot => 1, thead => 1, html => 1,
4259                    }->{$self->{open_elements}->[-1]->[1]}) {
4260                      !!!cp ('t203');
4261                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4262                      pop @{$self->{open_elements}};
4263                    }
4264                    
4265                    $self->{insertion_mode} = IN_ROW_IM;
4266                    if ($token->{tag_name} eq 'tr') {
4267                      !!!cp ('t204');
4268                      !!!insert-element ($token->{tag_name}, $token->{attributes});
4269                      !!!next-token;
4270                      redo B;
4271                    } else {
4272                      !!!cp ('t205');
4273                      !!!insert-element ('tr');
4274                      ## reprocess in the "in row" insertion mode
4275                    }
4276                  } else {
4277                    !!!cp ('t206');
4278                  }
4279    
4280                  ## Clear back to table row context
4281                  while (not {
4282                    tr => 1, html => 1,
4283                  }->{$self->{open_elements}->[-1]->[1]}) {
4284                    !!!cp ('t207');
4285                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4286                    pop @{$self->{open_elements}};
4287                  }
4288                  
4289                  !!!insert-element ($token->{tag_name}, $token->{attributes});
4290                  $self->{insertion_mode} = IN_CELL_IM;
4291    
4292                  push @$active_formatting_elements, ['#marker', ''];
4293                  
4294                  !!!next-token;
4295                  redo B;
4296                } elsif ({
4297                          caption => 1, col => 1, colgroup => 1,
4298                          tbody => 1, tfoot => 1, thead => 1,
4299                          tr => 1, # $self->{insertion_mode} == IN_ROW_IM
4300                         }->{$token->{tag_name}}) {
4301                  if ($self->{insertion_mode} == IN_ROW_IM) {
4302                    ## As if </tr>
4303                    ## have an element in table scope
4304                    my $i;
4305                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4306                      my $node = $self->{open_elements}->[$_];
4307                      if ($node->[1] eq 'tr') {
4308                        !!!cp ('t208');
4309                        $i = $_;
4310                        last INSCOPE;
4311                      } elsif ({
4312                                table => 1, html => 1,
4313                               }->{$node->[1]}) {
4314                        !!!cp ('t209');
4315                        last INSCOPE;
4316                      }
4317                    } # INSCOPE
4318                    unless (defined $i) {
4319                     !!!cp ('t210');
4320                     !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name});
4321                      ## Ignore the token
4322                      !!!next-token;
4323                      redo B;
4324                    }
4325                    
4326                    ## Clear back to table row context
4327                    while (not {
4328                      tr => 1, html => 1,
4329                    }->{$self->{open_elements}->[-1]->[1]}) {
4330                      !!!cp ('t211');
4331                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4332                      pop @{$self->{open_elements}};
4333                    }
4334                    
4335                    pop @{$self->{open_elements}}; # tr
4336                    $self->{insertion_mode} = IN_TABLE_BODY_IM;
4337                    if ($token->{tag_name} eq 'tr') {
4338                      !!!cp ('t212');
4339                      ## reprocess
4340                      redo B;
4341                    } else {
4342                      !!!cp ('t213');
4343                      ## reprocess in the "in table body" insertion mode...
4344                    }
4345                  }
4346    
4347                  if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
4348                    ## have an element in table scope
4349                    my $i;
4350                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4351                      my $node = $self->{open_elements}->[$_];
4352                      if ({
4353                           tbody => 1, thead => 1, tfoot => 1,
4354                          }->{$node->[1]}) {
4355                        !!!cp ('t214');
4356                        $i = $_;
4357                        last INSCOPE;
4358                      } elsif ({
4359                                table => 1, html => 1,
4360                               }->{$node->[1]}) {
4361                        !!!cp ('t215');
4362                        last INSCOPE;
4363                      }
4364                    } # INSCOPE
4365                    unless (defined $i) {
4366                      !!!cp ('t216');
4367    ## TODO: This erorr type ios wrong.
4368                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4369                      ## Ignore the token
4370                      !!!next-token;
4371                      redo B;
4372                    }
4373    
4374                    ## Clear back to table body context
4375                    while (not {
4376                      tbody => 1, tfoot => 1, thead => 1, html => 1,
4377                    }->{$self->{open_elements}->[-1]->[1]}) {
4378                      !!!cp ('t217');
4379                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4380                      pop @{$self->{open_elements}};
4381                    }
4382                    
4383                    ## As if <{current node}>
4384                    ## have an element in table scope
4385                    ## true by definition
4386                    
4387                    ## Clear back to table body context
4388                    ## nop by definition
4389                    
4390                    pop @{$self->{open_elements}};
4391                    $self->{insertion_mode} = IN_TABLE_IM;
4392                    ## reprocess in "in table" insertion mode...
4393                  } else {
4394                    !!!cp ('t218');
4395                  }
4396    
4397                  if ($token->{tag_name} eq 'col') {
4398                    ## Clear back to table context
4399                    while ($self->{open_elements}->[-1]->[1] ne 'table' and
4400                           $self->{open_elements}->[-1]->[1] ne 'html') {
4401                      !!!cp ('t219');
4402                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4403                      pop @{$self->{open_elements}};
4404                    }
4405                    
4406                    !!!insert-element ('colgroup');
4407                    $self->{insertion_mode} = IN_COLUMN_GROUP_IM;
4408                    ## reprocess
4409                    redo B;
4410                  } elsif ({
4411                            caption => 1,
4412                            colgroup => 1,
4413                            tbody => 1, tfoot => 1, thead => 1,
4414                           }->{$token->{tag_name}}) {
4415                    ## Clear back to table context
4416                    while ($self->{open_elements}->[-1]->[1] ne 'table' and
4417                           $self->{open_elements}->[-1]->[1] ne 'html') {
4418                      !!!cp ('t220');
4419                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4420                      pop @{$self->{open_elements}};
4421                    }
4422                    
4423                    push @$active_formatting_elements, ['#marker', '']
4424                        if $token->{tag_name} eq 'caption';
4425                    
4426                    !!!insert-element ($token->{tag_name}, $token->{attributes});
4427                    $self->{insertion_mode} = {
4428                                               caption => IN_CAPTION_IM,
4429                                               colgroup => IN_COLUMN_GROUP_IM,
4430                                               tbody => IN_TABLE_BODY_IM,
4431                                               tfoot => IN_TABLE_BODY_IM,
4432                                               thead => IN_TABLE_BODY_IM,
4433                                              }->{$token->{tag_name}};
4434                    !!!next-token;
4435                    redo B;
4436                  } else {
4437                    die "$0: in table: <>: $token->{tag_name}";
4438                  }
4439                } elsif ($token->{tag_name} eq 'table') {
4440                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4441    
4442                  ## As if </table>
4443                  ## have a table element in table scope
4444                  my $i;
4445                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4446                    my $node = $self->{open_elements}->[$_];
4447                    if ($node->[1] eq 'table') {
4448                      !!!cp ('t221');
4449                      $i = $_;
4450                      last INSCOPE;
4451                    } elsif ({
4452                              table => 1, html => 1,
4453                             }->{$node->[1]}) {
4454                      !!!cp ('t222');
4455                      last INSCOPE;
4456                    }
4457                  } # INSCOPE
4458                  unless (defined $i) {
4459                    !!!cp ('t223');
4460                    !!!parse-error (type => 'unmatched end tag:table');
4461                    ## Ignore tokens </table><table>
4462                    !!!next-token;
4463                    redo B;
4464                  }
4465                  
4466                  ## generate implied end tags
4467                  if ({
4468                       dd => 1, dt => 1, li => 1, p => 1,
4469                       td => 1, th => 1, tr => 1,
4470                       tbody => 1, tfoot=> 1, thead => 1,
4471                      }->{$self->{open_elements}->[-1]->[1]}) {
4472                    !!!cp ('t224');
4473                    !!!back-token; # <table>
4474                    $token = {type => END_TAG_TOKEN, tag_name => 'table'};
4475                    !!!back-token;
4476                    $token = {type => END_TAG_TOKEN,
4477                              tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
4478                    redo B;
4479                  }
4480    
4481                  if ($self->{open_elements}->[-1]->[1] ne 'table') {
4482                    !!!cp ('t225');
4483                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4484                  } else {
4485                    !!!cp ('t226');
4486                  }
4487    
4488                  splice @{$self->{open_elements}}, $i;
4489    
4490                  $self->_reset_insertion_mode;
4491    
4492                  ## reprocess
4493                  redo B;
4494            } else {
4495              !!!cp ('t227');
4496              !!!parse-error (type => 'in table:'.$token->{tag_name});
4497    
4498              $insert = $insert_to_foster;
4499              #
4500            }
4501          } elsif ($token->{type} == END_TAG_TOKEN) {
4502                if ($token->{tag_name} eq 'tr' and
4503                    $self->{insertion_mode} == IN_ROW_IM) {
4504                  ## have an element in table scope
4505                  my $i;
4506                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4507                    my $node = $self->{open_elements}->[$_];
4508                    if ($node->[1] eq $token->{tag_name}) {
4509                      !!!cp ('t228');
4510                      $i = $_;
4511                      last INSCOPE;
4512                    } elsif ({
4513                              table => 1, html => 1,
4514                             }->{$node->[1]}) {
4515                      !!!cp ('t229');
4516                      last INSCOPE;
4517                    }
4518                  } # INSCOPE
4519                  unless (defined $i) {
4520                    !!!cp ('t230');
4521                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4522                    ## Ignore the token
4523                    !!!next-token;
4524                    redo B;
4525                  } else {
4526                    !!!cp ('t232');
4527                  }
4528    
4529                  ## Clear back to table row context
4530                  while (not {
4531                    tr => 1, html => 1,
4532                  }->{$self->{open_elements}->[-1]->[1]}) {
4533                    !!!cp ('t231');
4534                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4535                    pop @{$self->{open_elements}};
4536                  }
4537    
4538                  pop @{$self->{open_elements}}; # tr
4539                  $self->{insertion_mode} = IN_TABLE_BODY_IM;
4540                  !!!next-token;
4541                  redo B;
4542                } elsif ($token->{tag_name} eq 'table') {
4543                  if ($self->{insertion_mode} == IN_ROW_IM) {
4544                    ## As if </tr>
4545                    ## have an element in table scope
4546                    my $i;
4547                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4548                      my $node = $self->{open_elements}->[$_];
4549                      if ($node->[1] eq 'tr') {
4550                        !!!cp ('t233');
4551                        $i = $_;
4552                        last INSCOPE;
4553                      } elsif ({
4554                                table => 1, html => 1,
4555                               }->{$node->[1]}) {
4556                        !!!cp ('t234');
4557                        last INSCOPE;
4558                      }
4559                    } # INSCOPE
4560                    unless (defined $i) {
4561                      !!!cp ('t235');
4562                      !!!parse-error (type => 'unmatched end tag:'.$token->{type});
4563                      ## Ignore the token
4564                      !!!next-token;
4565                      redo B;
4566                    }
4567                    
4568                    ## Clear back to table row context
4569                    while (not {
4570                      tr => 1, html => 1,
4571                    }->{$self->{open_elements}->[-1]->[1]}) {
4572                      !!!cp ('t236');
4573                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4574                      pop @{$self->{open_elements}};
4575                    }
4576                    
4577                    pop @{$self->{open_elements}}; # tr
4578                    $self->{insertion_mode} = IN_TABLE_BODY_IM;
4579                    ## reprocess in the "in table body" insertion mode...
4580                  }
4581    
4582                  if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
4583                    ## have an element in table scope
4584                    my $i;
4585                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4586                      my $node = $self->{open_elements}->[$_];
4587                      if ({
4588                           tbody => 1, thead => 1, tfoot => 1,
4589                          }->{$node->[1]}) {
4590                        !!!cp ('t237');
4591                        $i = $_;
4592                        last INSCOPE;
4593                      } elsif ({
4594                                table => 1, html => 1,
4595                               }->{$node->[1]}) {
4596                        !!!cp ('t238');
4597                        last INSCOPE;
4598                      }
4599                    } # INSCOPE
4600                    unless (defined $i) {
4601                      !!!cp ('t239');
4602                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4603                      ## Ignore the token
4604                      !!!next-token;
4605                      redo B;
4606                    }
4607                    
4608                    ## Clear back to table body context
4609                    while (not {
4610                      tbody => 1, tfoot => 1, thead => 1, html => 1,
4611                    }->{$self->{open_elements}->[-1]->[1]}) {
4612                      !!!cp ('t240');
4613                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4614                      pop @{$self->{open_elements}};
4615                    }
4616                    
4617                    ## As if <{current node}>
4618                    ## have an element in table scope
4619                    ## true by definition
4620                    
4621                    ## Clear back to table body context
4622                    ## nop by definition
4623                    
4624                    pop @{$self->{open_elements}};
4625                    $self->{insertion_mode} = IN_TABLE_IM;
4626                    ## reprocess in the "in table" insertion mode...
4627                  }
4628    
4629                  ## have a table element in table scope
4630                  my $i;
4631                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4632                    my $node = $self->{open_elements}->[$_];
4633                    if ($node->[1] eq $token->{tag_name}) {
4634                      !!!cp ('t241');
4635                      $i = $_;
4636                      last INSCOPE;
4637                    } elsif ({
4638                              table => 1, html => 1,
4639                             }->{$node->[1]}) {
4640                      !!!cp ('t242');
4641                      last INSCOPE;
4642                    }
4643                  } # INSCOPE
4644                  unless (defined $i) {
4645                    !!!cp ('t243');
4646                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4647                    ## Ignore the token
4648                    !!!next-token;
4649                    redo B;
4650                  }
4651    
4652                  ## generate implied end tags
4653                  if ({
4654                       dd => 1, dt => 1, li => 1, p => 1,
4655                       td => 1, th => 1, tr => 1,
4656                       tbody => 1, tfoot=> 1, thead => 1,
4657                      }->{$self->{open_elements}->[-1]->[1]}) {
4658                    !!!cp ('t244');
4659                    !!!back-token;
4660                    $token = {type => END_TAG_TOKEN,
4661                              tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
4662                    redo B;
4663                  }
4664                  
4665                  if ($self->{open_elements}->[-1]->[1] ne 'table') {
4666                    !!!cp ('t245');
4667                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4668                  } else {
4669                    !!!cp ('t246');
4670                  }
4671                    
4672                  splice @{$self->{open_elements}}, $i;
4673                  
4674                  $self->_reset_insertion_mode;
4675                  
4676                  !!!next-token;
4677                  redo B;
4678                } elsif ({
4679                          tbody => 1, tfoot => 1, thead => 1,
4680                         }->{$token->{tag_name}} and
4681                         $self->{insertion_mode} & ROW_IMS) {
4682                  if ($self->{insertion_mode} == IN_ROW_IM) {
4683                    ## have an element in table scope
4684                    my $i;
4685                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4686                      my $node = $self->{open_elements}->[$_];
4687                      if ($node->[1] eq $token->{tag_name}) {
4688                        !!!cp ('t247');
4689                        $i = $_;
4690                        last INSCOPE;
4691                      } elsif ({
4692                                table => 1, html => 1,
4693                               }->{$node->[1]}) {
4694                        !!!cp ('t248');
4695                        last INSCOPE;
4696                      }
4697                    } # INSCOPE
4698                      unless (defined $i) {
4699                        !!!cp ('t249');
4700                        !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4701                        ## Ignore the token
4702                        !!!next-token;
4703                        redo B;
4704                      }
4705                    
4706                    ## As if </tr>
4707                    ## have an element in table scope
4708                    my $i;
4709                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4710                      my $node = $self->{open_elements}->[$_];
4711                      if ($node->[1] eq 'tr') {
4712                        !!!cp ('t250');
4713                        $i = $_;
4714                        last INSCOPE;
4715                      } elsif ({
4716                                table => 1, html => 1,
4717                               }->{$node->[1]}) {
4718                        !!!cp ('t251');
4719                        last INSCOPE;
4720                      }
4721                    } # INSCOPE
4722                      unless (defined $i) {
4723                        !!!cp ('t252');
4724                        !!!parse-error (type => 'unmatched end tag:tr');
4725                        ## Ignore the token
4726                        !!!next-token;
4727                        redo B;
4728                      }
4729                    
4730                    ## Clear back to table row context
4731                    while (not {
4732                      tr => 1, html => 1,
4733                    }->{$self->{open_elements}->[-1]->[1]}) {
4734                      !!!cp ('t253');
4735                      !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4736                      pop @{$self->{open_elements}};
4737                    }
4738                    
4739                    pop @{$self->{open_elements}}; # tr
4740                    $self->{insertion_mode} = IN_TABLE_BODY_IM;
4741                    ## reprocess in the "in table body" insertion mode...
4742                  }
4743    
4744                  ## have an element in table scope
4745                  my $i;
4746                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4747                    my $node = $self->{open_elements}->[$_];
4748                    if ($node->[1] eq $token->{tag_name}) {
4749                      !!!cp ('t254');
4750                      $i = $_;
4751                      last INSCOPE;
4752                    } elsif ({
4753                              table => 1, html => 1,
4754                             }->{$node->[1]}) {
4755                      !!!cp ('t255');
4756                      last INSCOPE;
4757                    }
4758                  } # INSCOPE
4759                  unless (defined $i) {
4760                    !!!cp ('t256');
4761                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4762                    ## Ignore the token
4763                    !!!next-token;
4764                    redo B;
4765                  }
4766    
4767                  ## Clear back to table body context
4768                  while (not {
4769                    tbody => 1, tfoot => 1, thead => 1, html => 1,
4770                  }->{$self->{open_elements}->[-1]->[1]}) {
4771                    !!!cp ('t257');
4772                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4773                    pop @{$self->{open_elements}};
4774                  }
4775    
4776                  pop @{$self->{open_elements}};
4777                  $self->{insertion_mode} = IN_TABLE_IM;
4778                  !!!next-token;
4779                  redo B;
4780                } elsif ({
4781                          body => 1, caption => 1, col => 1, colgroup => 1,
4782                          html => 1, td => 1, th => 1,
4783                          tr => 1, # $self->{insertion_mode} == IN_ROW_IM
4784                          tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM
4785                         }->{$token->{tag_name}}) {
4786                  !!!cp ('t258');
4787                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4788                  ## Ignore the token
4789                  !!!next-token;
4790                  redo B;
4791            } else {
4792              !!!cp ('t259');
4793              !!!parse-error (type => 'in table:/'.$token->{tag_name});
4794    
4795              $insert = $insert_to_foster;
4796              #
4797            }
4798          } else {
4799            die "$0: $token->{type}: Unknown token type";
4800          }
4801        } elsif ($self->{insertion_mode} == IN_COLUMN_GROUP_IM) {
4802              if ($token->{type} == CHARACTER_TOKEN) {
4803                if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4804                  $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4805                  unless (length $token->{data}) {
4806                    !!!cp ('t260');
4807                    !!!next-token;
4808                    redo B;
4809                  }
4810                }
4811                
4812                !!!cp ('t261');
4813                #
4814              } elsif ($token->{type} == START_TAG_TOKEN) {
4815                if ($token->{tag_name} eq 'col') {
4816                  !!!cp ('t262');
4817                  !!!insert-element ($token->{tag_name}, $token->{attributes});
4818                  pop @{$self->{open_elements}};
4819                  !!!next-token;
4820                  redo B;
4821                } else {
4822                  !!!cp ('t263');
4823                  #
4824                }
4825              } elsif ($token->{type} == END_TAG_TOKEN) {
4826                if ($token->{tag_name} eq 'colgroup') {
4827                  if ($self->{open_elements}->[-1]->[1] eq 'html') {
4828                    !!!cp ('t264');
4829                    !!!parse-error (type => 'unmatched end tag:colgroup');
4830                    ## Ignore the token
4831                    !!!next-token;
4832                    redo B;
4833                  } else {
4834                    !!!cp ('t265');
4835                    pop @{$self->{open_elements}}; # colgroup
4836                    $self->{insertion_mode} = IN_TABLE_IM;
4837                    !!!next-token;
4838                    redo B;            
4839                  }
4840                } elsif ($token->{tag_name} eq 'col') {
4841                  !!!cp ('t266');
4842                  !!!parse-error (type => 'unmatched end tag:col');
4843                  ## Ignore the token
4844                  !!!next-token;
4845                  redo B;
4846                } else {
4847                  !!!cp ('t267');
4848                  #
4849                }
4850              } else {
4851                !!!cp ('t268');
4852                #
4853              }
4854    
4855              ## As if </colgroup>
4856              if ($self->{open_elements}->[-1]->[1] eq 'html') {
4857                !!!cp ('t269');
4858                !!!parse-error (type => 'unmatched end tag:colgroup');
4859                ## Ignore the token
4860                !!!next-token;
4861                redo B;
4862              } else {
4863                !!!cp ('t270');
4864                pop @{$self->{open_elements}}; # colgroup
4865                $self->{insertion_mode} = IN_TABLE_IM;
4866                ## reprocess
4867                redo B;
4868              }
4869        } elsif ($self->{insertion_mode} == IN_SELECT_IM) {
4870          if ($token->{type} == CHARACTER_TOKEN) {
4871            !!!cp ('t271');
4872            $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4873            !!!next-token;
4874            redo B;
4875          } elsif ($token->{type} == START_TAG_TOKEN) {
4876                if ($token->{tag_name} eq 'option') {
4877                  if ($self->{open_elements}->[-1]->[1] eq 'option') {
4878                    !!!cp ('t272');
4879                    ## As if </option>
4880                    pop @{$self->{open_elements}};
4881                  } else {
4882                    !!!cp ('t273');
4883                  }
4884    
4885                  !!!insert-element ($token->{tag_name}, $token->{attributes});
4886                  !!!next-token;
4887                  redo B;
4888                } elsif ($token->{tag_name} eq 'optgroup') {
4889                  if ($self->{open_elements}->[-1]->[1] eq 'option') {
4890                    !!!cp ('t274');
4891                    ## As if </option>
4892                    pop @{$self->{open_elements}};
4893                  } else {
4894                    !!!cp ('t275');
4895                  }
4896    
4897                  if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {
4898                    !!!cp ('t276');
4899                    ## As if </optgroup>
4900                    pop @{$self->{open_elements}};
4901                  } else {
4902                    !!!cp ('t277');
4903                  }
4904    
4905                  !!!insert-element ($token->{tag_name}, $token->{attributes});
4906                  !!!next-token;
4907                  redo B;
4908                } elsif ($token->{tag_name} eq 'select') {
4909                  !!!parse-error (type => 'not closed:select');
4910                  ## As if </select> instead
4911                  ## have an element in table scope
4912                  my $i;
4913                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4914                    my $node = $self->{open_elements}->[$_];
4915                    if ($node->[1] eq $token->{tag_name}) {
4916                      !!!cp ('t278');
4917                      $i = $_;
4918                      last INSCOPE;
4919                    } elsif ({
4920                              table => 1, html => 1,
4921                             }->{$node->[1]}) {
4922                      !!!cp ('t279');
4923                      last INSCOPE;
4924                    }
4925                  } # INSCOPE
4926                  unless (defined $i) {
4927                    !!!cp ('t280');
4928                    !!!parse-error (type => 'unmatched end tag:select');
4929                    ## Ignore the token
4930                    !!!next-token;
4931                    redo B;
4932                  }
4933                  
4934                  !!!cp ('t281');
4935                  splice @{$self->{open_elements}}, $i;
4936    
4937                  $self->_reset_insertion_mode;
4938    
4939                  !!!next-token;
4940                  redo B;
4941            } else {
4942              !!!cp ('t282');
4943              !!!parse-error (type => 'in select:'.$token->{tag_name});
4944              ## Ignore the token
4945              !!!next-token;
4946              redo B;
4947            }
4948          } elsif ($token->{type} == END_TAG_TOKEN) {
4949                if ($token->{tag_name} eq 'optgroup') {
4950                  if ($self->{open_elements}->[-1]->[1] eq 'option' and
4951                      $self->{open_elements}->[-2]->[1] eq 'optgroup') {
4952                    !!!cp ('t283');
4953                    ## As if </option>
4954                    splice @{$self->{open_elements}}, -2;
4955                  } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {
4956                    !!!cp ('t284');
4957                    pop @{$self->{open_elements}};
4958                  } else {
4959                    !!!cp ('t285');
4960                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4961                    ## Ignore the token
4962                  }
4963                  !!!next-token;
4964                  redo B;
4965                } elsif ($token->{tag_name} eq 'option') {
4966                  if ($self->{open_elements}->[-1]->[1] eq 'option') {
4967                    !!!cp ('t286');
4968                    pop @{$self->{open_elements}};
4969                  } else {
4970                    !!!cp ('t287');
4971                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4972                    ## Ignore the token
4973                  }
4974                  !!!next-token;
4975                  redo B;
4976                } elsif ($token->{tag_name} eq 'select') {
4977                  ## have an element in table scope
4978                  my $i;
4979                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4980                    my $node = $self->{open_elements}->[$_];
4981                    if ($node->[1] eq $token->{tag_name}) {
4982                      !!!cp ('t288');
4983                      $i = $_;
4984                      last INSCOPE;
4985                    } elsif ({
4986                              table => 1, html => 1,
4987                             }->{$node->[1]}) {
4988                      !!!cp ('t289');
4989                      last INSCOPE;
4990                    }
4991                  } # INSCOPE
4992                  unless (defined $i) {
4993                    !!!cp ('t290');
4994                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4995                    ## Ignore the token
4996                    !!!next-token;
4997                    redo B;
4998                  }
4999                  
5000                  !!!cp ('t291');
5001                  splice @{$self->{open_elements}}, $i;
5002    
5003                  $self->_reset_insertion_mode;
5004    
5005                  !!!next-token;
5006                  redo B;
5007                } elsif ({
5008                          caption => 1, table => 1, tbody => 1,
5009                          tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
5010                         }->{$token->{tag_name}}) {
5011                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5012                  
5013                  ## have an element in table scope
5014                  my $i;
5015                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5016                    my $node = $self->{open_elements}->[$_];
5017                    if ($node->[1] eq $token->{tag_name}) {
5018                      !!!cp ('t292');
5019                      $i = $_;
5020                      last INSCOPE;
5021                    } elsif ({
5022                              table => 1, html => 1,
5023                             }->{$node->[1]}) {
5024                      !!!cp ('t293');
5025                      last INSCOPE;
5026                    }
5027                  } # INSCOPE
5028                  unless (defined $i) {
5029                    !!!cp ('t294');
5030                    ## Ignore the token
5031                    !!!next-token;
5032                    redo B;
5033                  }
5034                  
5035                  ## As if </select>
5036                  ## have an element in table scope
5037                  undef $i;
5038                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5039                    my $node = $self->{open_elements}->[$_];
5040                    if ($node->[1] eq 'select') {
5041                      !!!cp ('t295');
5042                      $i = $_;
5043                      last INSCOPE;
5044                    } elsif ({
5045                              table => 1, html => 1,
5046                             }->{$node->[1]}) {
5047                      !!!cp ('t296');
5048                      last INSCOPE;
5049                    }
5050                  } # INSCOPE
5051                  unless (defined $i) {
5052                    !!!cp ('t297');
5053                    !!!parse-error (type => 'unmatched end tag:select');
5054                    ## Ignore the </select> token
5055                    !!!next-token; ## TODO: ok?
5056                    redo B;
5057                  }
5058                  
5059                  !!!cp ('t298');
5060                  splice @{$self->{open_elements}}, $i;
5061    
5062                  $self->_reset_insertion_mode;
5063    
5064                  ## reprocess
5065                  redo B;
5066            } else {
5067              !!!cp ('t299');
5068              !!!parse-error (type => 'in select:/'.$token->{tag_name});
5069              ## Ignore the token
5070              !!!next-token;
5071              redo B;
5072            }
5073          } else {
5074            die "$0: $token->{type}: Unknown token type";
5075          }
5076        } elsif ($self->{insertion_mode} & BODY_AFTER_IMS) {
5077          if ($token->{type} == CHARACTER_TOKEN) {
5078            if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
5079              my $data = $1;
5080              ## As if in body
5081              $reconstruct_active_formatting_elements->($insert_to_current);
5082                  
5083              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
5084              
5085              unless (length $token->{data}) {
5086                !!!cp ('t300');
5087                !!!next-token;
5088                redo B;
5089              }
5090            }
5091            
5092            if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5093              !!!cp ('t301');
5094              !!!parse-error (type => 'after html:#character');
5095    
5096              ## Reprocess in the "main" phase, "after body" insertion mode...
5097            } else {
5098              !!!cp ('t302');
5099            }
5100            
5101            ## "after body" insertion mode
5102            !!!parse-error (type => 'after body:#character');
5103    
5104            $self->{insertion_mode} = IN_BODY_IM;
5105            ## reprocess
5106            redo B;
5107          } elsif ($token->{type} == START_TAG_TOKEN) {
5108            if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5109              !!!cp ('t303');
5110              !!!parse-error (type => 'after html:'.$token->{tag_name});
5111              
5112              ## Reprocess in the "main" phase, "after body" insertion mode...
5113            } else {
5114              !!!cp ('t304');
5115            }
5116    
5117            ## "after body" insertion mode
5118            !!!parse-error (type => 'after body:'.$token->{tag_name});
5119    
5120            $self->{insertion_mode} = IN_BODY_IM;
5121            ## reprocess
5122            redo B;
5123          } elsif ($token->{type} == END_TAG_TOKEN) {
5124            if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5125              !!!cp ('t305');
5126              !!!parse-error (type => 'after html:/'.$token->{tag_name});
5127              
5128              $self->{insertion_mode} = AFTER_BODY_IM;
5129              ## Reprocess in the "main" phase, "after body" insertion mode...
5130            } else {
5131              !!!cp ('t306');
5132            }
5133    
5134            ## "after body" insertion mode
5135            if ($token->{tag_name} eq 'html') {
5136              if (defined $self->{inner_html_node}) {
5137                !!!cp ('t307');
5138                !!!parse-error (type => 'unmatched end tag:html');
5139                ## Ignore the token
5140                !!!next-token;
5141                redo B;
5142              } else {
5143                !!!cp ('t308');
5144                $self->{insertion_mode} = AFTER_HTML_BODY_IM;
5145                !!!next-token;
5146                redo B;
5147              }
5148            } else {
5149              !!!cp ('t309');
5150              !!!parse-error (type => 'after body:/'.$token->{tag_name});
5151    
5152              $self->{insertion_mode} = IN_BODY_IM;
5153              ## reprocess
5154              redo B;
5155            }
5156          } else {
5157            die "$0: $token->{type}: Unknown token type";
5158          }
5159        } elsif ($self->{insertion_mode} & FRAME_IMS) {
5160          if ($token->{type} == CHARACTER_TOKEN) {
5161            if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
5162              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
5163              
5164              unless (length $token->{data}) {
5165                !!!cp ('t310');
5166                !!!next-token;
5167                redo B;
5168              }
5169            }
5170            
5171            if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {
5172              if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5173                !!!cp ('t311');
5174                !!!parse-error (type => 'in frameset:#character');
5175              } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
5176                !!!cp ('t312');
5177                !!!parse-error (type => 'after frameset:#character');
5178              } else { # "after html frameset"
5179                !!!cp ('t313');
5180                !!!parse-error (type => 'after html:#character');
5181    
5182                $self->{insertion_mode} = AFTER_FRAMESET_IM;
5183                ## Reprocess in the "main" phase, "after frameset"...
5184                !!!parse-error (type => 'after frameset:#character');
5185              }
5186              
5187              ## Ignore the token.
5188              if (length $token->{data}) {
5189                !!!cp ('t314');
5190                ## reprocess the rest of characters
5191              } else {
5192                !!!cp ('t315');
5193                !!!next-token;
5194              }
5195              redo B;
5196            }
5197            
5198            die qq[$0: Character "$token->{data}"];
5199          } elsif ($token->{type} == START_TAG_TOKEN) {
5200            if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
5201              !!!cp ('t316');
5202              !!!parse-error (type => 'after html:'.$token->{tag_name});
5203    
5204              $self->{insertion_mode} = AFTER_FRAMESET_IM;
5205              ## Process in the "main" phase, "after frameset" insertion mode...
5206            } else {
5207              !!!cp ('t317');
5208            }
5209    
5210            if ($token->{tag_name} eq 'frameset' and
5211                $self->{insertion_mode} == IN_FRAMESET_IM) {
5212              !!!cp ('t318');
5213              !!!insert-element ($token->{tag_name}, $token->{attributes});
5214              !!!next-token;
5215              redo B;
5216            } elsif ($token->{tag_name} eq 'frame' and
5217                     $self->{insertion_mode} == IN_FRAMESET_IM) {
5218              !!!cp ('t319');
5219              !!!insert-element ($token->{tag_name}, $token->{attributes});
5220              pop @{$self->{open_elements}};
5221              !!!next-token;
5222              redo B;
5223            } elsif ($token->{tag_name} eq 'noframes') {
5224              !!!cp ('t320');
5225              ## NOTE: As if in body.
5226              $parse_rcdata->(CDATA_CONTENT_MODEL, $insert_to_current);
5227              redo B;
5228            } else {
5229              if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5230                !!!cp ('t321');
5231                !!!parse-error (type => 'in frameset:'.$token->{tag_name});
5232              } else {
5233                !!!cp ('t322');
5234                !!!parse-error (type => 'after frameset:'.$token->{tag_name});
5235              }
5236              ## Ignore the token
5237              !!!next-token;
5238              redo B;
5239            }
5240          } elsif ($token->{type} == END_TAG_TOKEN) {
5241            if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
5242              !!!cp ('t323');
5243              !!!parse-error (type => 'after html:/'.$token->{tag_name});
5244    
5245              $self->{insertion_mode} = AFTER_FRAMESET_IM;
5246              ## Process in the "main" phase, "after frameset" insertion mode...
5247            } else {
5248              !!!cp ('t324');
5249            }
5250    
5251            if ($token->{tag_name} eq 'frameset' and
5252                $self->{insertion_mode} == IN_FRAMESET_IM) {
5253              if ($self->{open_elements}->[-1]->[1] eq 'html' and
5254                  @{$self->{open_elements}} == 1) {
5255                !!!cp ('t325');
5256                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5257                ## Ignore the token
5258                !!!next-token;
5259              } else {
5260                !!!cp ('t326');
5261                pop @{$self->{open_elements}};
5262                !!!next-token;
5263              }
5264    
5265              if (not defined $self->{inner_html_node} and
5266                  $self->{open_elements}->[-1]->[1] ne 'frameset') {
5267                !!!cp ('t327');
5268                $self->{insertion_mode} = AFTER_FRAMESET_IM;
5269              } else {
5270                !!!cp ('t328');
5271              }
5272              redo B;
5273            } elsif ($token->{tag_name} eq 'html' and
5274                     $self->{insertion_mode} == AFTER_FRAMESET_IM) {
5275              !!!cp ('t329');
5276              $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;
5277              !!!next-token;
5278              redo B;
5279            } else {
5280              if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5281                !!!cp ('t330');
5282                !!!parse-error (type => 'in frameset:/'.$token->{tag_name});
5283              } else {
5284                !!!cp ('t331');
5285                !!!parse-error (type => 'after frameset:/'.$token->{tag_name});
5286              }
5287              ## Ignore the token
5288              !!!next-token;
5289              redo B;
5290            }
5291          } else {
5292            die "$0: $token->{type}: Unknown token type";
5293          }
5294    
5295          ## ISSUE: An issue in spec here
5296        } else {
5297          die "$0: $self->{insertion_mode}: Unknown insertion mode";
5298        }
5299    
5300        ## "in body" insertion mode
5301        if ($token->{type} == START_TAG_TOKEN) {
5302        if ($token->{tag_name} eq 'script') {        if ($token->{tag_name} eq 'script') {
5303            !!!cp ('t332');
5304          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
5305          $script_start_tag->($insert);          $script_start_tag->($insert);
5306          return;          redo B;
5307        } elsif ($token->{tag_name} eq 'style') {        } elsif ($token->{tag_name} eq 'style') {
5308            !!!cp ('t333');
5309          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
5310          $parse_rcdata->('CDATA', $insert);          $parse_rcdata->(CDATA_CONTENT_MODEL, $insert);
5311          return;          redo B;
5312        } elsif ({        } elsif ({
5313                  base => 1, link => 1,                  base => 1, link => 1,
5314                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5315            !!!cp ('t334');
5316          ## NOTE: This is an "as if in head" code clone, only "-t" differs          ## NOTE: This is an "as if in head" code clone, only "-t" differs
5317          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5318          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
5319          !!!next-token;          !!!next-token;
5320          return;          redo B;
5321        } elsif ($token->{tag_name} eq 'meta') {        } elsif ($token->{tag_name} eq 'meta') {
5322          ## NOTE: This is an "as if in head" code clone, only "-t" differs          ## NOTE: This is an "as if in head" code clone, only "-t" differs
5323          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5324          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.          my $meta_el = pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
5325    
5326          unless ($self->{confident}) {          unless ($self->{confident}) {
           my $charset;  
5327            if ($token->{attributes}->{charset}) { ## TODO: And if supported            if ($token->{attributes}->{charset}) { ## TODO: And if supported
5328              $charset = $token->{attributes}->{charset}->{value};              !!!cp ('t335');
5329            }              $self->{change_encoding}
5330            if ($token->{attributes}->{'http-equiv'}) {                  ->($self, $token->{attributes}->{charset}->{value});
5331                
5332                $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
5333                    ->set_user_data (manakai_has_reference =>
5334                                         $token->{attributes}->{charset}
5335                                             ->{has_reference});
5336              } elsif ($token->{attributes}->{content}) {
5337              ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.              ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.
5338              if ($token->{attributes}->{'http-equiv'}->{value}              if ($token->{attributes}->{content}->{value}
5339                  =~ /\A[^;]*;[\x09-\x0D\x20]*charset[\x09-\x0D\x20]*=                  =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
5340                        [\x09-\x0D\x20]*=
5341                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
5342                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {
5343                $charset = defined $1 ? $1 : defined $2 ? $2 : $3;                !!!cp ('t336');
5344              } ## TODO: And if supported                $self->{change_encoding}
5345                      ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);
5346                  $meta_el->[0]->get_attribute_node_ns (undef, 'content')
5347                      ->set_user_data (manakai_has_reference =>
5348                                           $token->{attributes}->{content}
5349                                                 ->{has_reference});
5350                }
5351              }
5352            } else {
5353              if ($token->{attributes}->{charset}) {
5354                !!!cp ('t337');
5355                $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
5356                    ->set_user_data (manakai_has_reference =>
5357                                         $token->{attributes}->{charset}
5358                                             ->{has_reference});
5359              }
5360              if ($token->{attributes}->{content}) {
5361                !!!cp ('t338');
5362                $meta_el->[0]->get_attribute_node_ns (undef, 'content')
5363                    ->set_user_data (manakai_has_reference =>
5364                                         $token->{attributes}->{content}
5365                                             ->{has_reference});
5366            }            }
           ## TODO: Change the encoding  
5367          }          }
5368    
5369          !!!next-token;          !!!next-token;
5370          return;          redo B;
5371        } elsif ($token->{tag_name} eq 'title') {        } elsif ($token->{tag_name} eq 'title') {
5372            !!!cp ('t341');
5373          !!!parse-error (type => 'in body:title');          !!!parse-error (type => 'in body:title');
5374          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
5375          $parse_rcdata->('RCDATA', sub {          $parse_rcdata->(RCDATA_CONTENT_MODEL, sub {
5376            if (defined $self->{head_element}) {            if (defined $self->{head_element}) {
5377                !!!cp ('t339');
5378              $self->{head_element}->append_child ($_[0]);              $self->{head_element}->append_child ($_[0]);
5379            } else {            } else {
5380                !!!cp ('t340');
5381              $insert->($_[0]);              $insert->($_[0]);
5382            }            }
5383          });          });
5384          return;          redo B;
5385        } elsif ($token->{tag_name} eq 'body') {        } elsif ($token->{tag_name} eq 'body') {
5386          !!!parse-error (type => 'in body:body');          !!!parse-error (type => 'in body:body');
5387                                
5388          if (@{$self->{open_elements}} == 1 or          if (@{$self->{open_elements}} == 1 or
5389              $self->{open_elements}->[1]->[1] ne 'body') {              $self->{open_elements}->[1]->[1] ne 'body') {
5390              !!!cp ('t342');
5391            ## Ignore the token            ## Ignore the token
5392          } else {          } else {
5393            my $body_el = $self->{open_elements}->[1]->[0];            my $body_el = $self->{open_elements}->[1]->[0];
5394            for my $attr_name (keys %{$token->{attributes}}) {            for my $attr_name (keys %{$token->{attributes}}) {
5395              unless ($body_el->has_attribute_ns (undef, $attr_name)) {              unless ($body_el->has_attribute_ns (undef, $attr_name)) {
5396                  !!!cp ('t343');
5397                $body_el->set_attribute_ns                $body_el->set_attribute_ns
5398                  (undef, [undef, $attr_name],                  (undef, [undef, $attr_name],
5399                   $token->{attributes}->{$attr_name}->{value});                   $token->{attributes}->{$attr_name}->{value});
# Line 2556  sub _tree_construction_main ($) { Line 5401  sub _tree_construction_main ($) {
5401            }            }
5402          }          }
5403          !!!next-token;          !!!next-token;
5404          return;          redo B;
5405        } elsif ({        } elsif ({
5406                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
5407                  div => 1, dl => 1, fieldset => 1, listing => 1,                  div => 1, dl => 1, fieldset => 1, listing => 1,
# Line 2566  sub _tree_construction_main ($) { Line 5411  sub _tree_construction_main ($) {
5411          ## has a p element in scope          ## has a p element in scope
5412          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5413            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5414                !!!cp ('t344');
5415              !!!back-token;              !!!back-token;
5416              $token = {type => 'end tag', tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5417              return;              redo B;
5418            } elsif ({            } elsif ({
5419                      table => 1, caption => 1, td => 1, th => 1,                      table => 1, caption => 1, td => 1, th => 1,
5420                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5421                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5422                !!!cp ('t345');
5423              last INSCOPE;              last INSCOPE;
5424            }            }
5425          } # INSCOPE          } # INSCOPE
# Line 2580  sub _tree_construction_main ($) { Line 5427  sub _tree_construction_main ($) {
5427          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5428          if ($token->{tag_name} eq 'pre') {          if ($token->{tag_name} eq 'pre') {
5429            !!!next-token;            !!!next-token;
5430            if ($token->{type} eq 'character') {            if ($token->{type} == CHARACTER_TOKEN) {
5431              $token->{data} =~ s/^\x0A//;              $token->{data} =~ s/^\x0A//;
5432              unless (length $token->{data}) {              unless (length $token->{data}) {
5433                  !!!cp ('t346');
5434                !!!next-token;                !!!next-token;
5435                } else {
5436                  !!!cp ('t349');
5437              }              }
5438              } else {
5439                !!!cp ('t348');
5440            }            }
5441          } else {          } else {
5442              !!!cp ('t347');
5443            !!!next-token;            !!!next-token;
5444          }          }
5445          return;          redo B;
5446        } elsif ($token->{tag_name} eq 'form') {        } elsif ($token->{tag_name} eq 'form') {
5447          if (defined $self->{form_element}) {          if (defined $self->{form_element}) {
5448              !!!cp ('t350');
5449            !!!parse-error (type => 'in form:form');            !!!parse-error (type => 'in form:form');
5450            ## Ignore the token            ## Ignore the token
5451            !!!next-token;            !!!next-token;
5452            return;            redo B;
5453          } else {          } else {
5454            ## has a p element in scope            ## has a p element in scope
5455            INSCOPE: for (reverse @{$self->{open_elements}}) {            INSCOPE: for (reverse @{$self->{open_elements}}) {
5456              if ($_->[1] eq 'p') {              if ($_->[1] eq 'p') {
5457                  !!!cp ('t351');
5458                !!!back-token;                !!!back-token;
5459                $token = {type => 'end tag', tag_name => 'p'};                $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5460                return;                redo B;
5461              } elsif ({              } elsif ({
5462                        table => 1, caption => 1, td => 1, th => 1,                        table => 1, caption => 1, td => 1, th => 1,
5463                        button => 1, marquee => 1, object => 1, html => 1,                        button => 1, marquee => 1, object => 1, html => 1,
5464                       }->{$_->[1]}) {                       }->{$_->[1]}) {
5465                  !!!cp ('t352');
5466                last INSCOPE;                last INSCOPE;
5467              }              }
5468            } # INSCOPE            } # INSCOPE
# Line 2614  sub _tree_construction_main ($) { Line 5470  sub _tree_construction_main ($) {
5470            !!!insert-element-t ($token->{tag_name}, $token->{attributes});            !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5471            $self->{form_element} = $self->{open_elements}->[-1]->[0];            $self->{form_element} = $self->{open_elements}->[-1]->[0];
5472            !!!next-token;            !!!next-token;
5473            return;            redo B;
5474          }          }
5475        } elsif ($token->{tag_name} eq 'li') {        } elsif ($token->{tag_name} eq 'li') {
5476          ## has a p element in scope          ## has a p element in scope
5477          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5478            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5479                !!!cp ('t353');
5480              !!!back-token;              !!!back-token;
5481              $token = {type => 'end tag', tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5482              return;              redo B;
5483            } elsif ({            } elsif ({
5484                      table => 1, caption => 1, td => 1, th => 1,                      table => 1, caption => 1, td => 1, th => 1,
5485                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5486                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5487                !!!cp ('t354');
5488              last INSCOPE;              last INSCOPE;
5489            }            }
5490          } # INSCOPE          } # INSCOPE
# Line 2638  sub _tree_construction_main ($) { Line 5496  sub _tree_construction_main ($) {
5496            ## Step 2            ## Step 2
5497            if ($node->[1] eq 'li') {            if ($node->[1] eq 'li') {
5498              if ($i != -1) {              if ($i != -1) {
5499                  !!!cp ('t355');
5500                !!!parse-error (type => 'end tag missing:'.                !!!parse-error (type => 'end tag missing:'.
5501                                $self->{open_elements}->[-1]->[1]);                                $self->{open_elements}->[-1]->[1]);
5502                } else {
5503                  !!!cp ('t356');
5504              }              }
5505              splice @{$self->{open_elements}}, $i;              splice @{$self->{open_elements}}, $i;
5506              last LI;              last LI;
5507              } else {
5508                !!!cp ('t357');
5509            }            }
5510                        
5511            ## Step 3            ## Step 3
# Line 2651  sub _tree_construction_main ($) { Line 5514  sub _tree_construction_main ($) {
5514                ($special_category->{$node->[1]} or                ($special_category->{$node->[1]} or
5515                 $scoping_category->{$node->[1]}) and                 $scoping_category->{$node->[1]}) and
5516                $node->[1] ne 'address' and $node->[1] ne 'div') {                $node->[1] ne 'address' and $node->[1] ne 'div') {
5517                !!!cp ('t358');
5518              last LI;              last LI;
5519            }            }
5520                        
5521              !!!cp ('t359');
5522            ## Step 4            ## Step 4
5523            $i--;            $i--;
5524            $node = $self->{open_elements}->[$i];            $node = $self->{open_elements}->[$i];
# Line 2662  sub _tree_construction_main ($) { Line 5527  sub _tree_construction_main ($) {
5527                        
5528          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5529          !!!next-token;          !!!next-token;
5530          return;          redo B;
5531        } elsif ($token->{tag_name} eq 'dd' or $token->{tag_name} eq 'dt') {        } elsif ($token->{tag_name} eq 'dd' or $token->{tag_name} eq 'dt') {
5532          ## has a p element in scope          ## has a p element in scope
5533          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5534            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5535                !!!cp ('t360');
5536              !!!back-token;              !!!back-token;
5537              $token = {type => 'end tag', tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5538              return;              redo B;
5539            } elsif ({            } elsif ({
5540                      table => 1, caption => 1, td => 1, th => 1,                      table => 1, caption => 1, td => 1, th => 1,
5541                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5542                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5543                !!!cp ('t361');
5544              last INSCOPE;              last INSCOPE;
5545            }            }
5546          } # INSCOPE          } # INSCOPE
# Line 2685  sub _tree_construction_main ($) { Line 5552  sub _tree_construction_main ($) {
5552            ## Step 2            ## Step 2
5553            if ($node->[1] eq 'dt' or $node->[1] eq 'dd') {            if ($node->[1] eq 'dt' or $node->[1] eq 'dd') {
5554              if ($i != -1) {              if ($i != -1) {
5555                  !!!cp ('t362');
5556                !!!parse-error (type => 'end tag missing:'.                !!!parse-error (type => 'end tag missing:'.
5557                                $self->{open_elements}->[-1]->[1]);                                $self->{open_elements}->[-1]->[1]);
5558                } else {
5559                  !!!cp ('t363');
5560              }              }
5561              splice @{$self->{open_elements}}, $i;              splice @{$self->{open_elements}}, $i;
5562              last LI;              last LI;
5563              } else {
5564                !!!cp ('t364');
5565            }            }
5566                        
5567            ## Step 3            ## Step 3
# Line 2698  sub _tree_construction_main ($) { Line 5570  sub _tree_construction_main ($) {
5570                ($special_category->{$node->[1]} or                ($special_category->{$node->[1]} or
5571                 $scoping_category->{$node->[1]}) and                 $scoping_category->{$node->[1]}) and
5572                $node->[1] ne 'address' and $node->[1] ne 'div') {                $node->[1] ne 'address' and $node->[1] ne 'div') {
5573                !!!cp ('t365');
5574              last LI;              last LI;
5575            }            }
5576                        
5577              !!!cp ('t366');
5578            ## Step 4            ## Step 4
5579            $i--;            $i--;
5580            $node = $self->{open_elements}->[$i];            $node = $self->{open_elements}->[$i];
# Line 2709  sub _tree_construction_main ($) { Line 5583  sub _tree_construction_main ($) {
5583                        
5584          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5585          !!!next-token;          !!!next-token;
5586          return;          redo B;
5587        } elsif ($token->{tag_name} eq 'plaintext') {        } elsif ($token->{tag_name} eq 'plaintext') {
5588          ## has a p element in scope          ## has a p element in scope
5589          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5590            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5591                !!!cp ('t367');
5592              !!!back-token;              !!!back-token;
5593              $token = {type => 'end tag', tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5594              return;              redo B;
5595            } elsif ({            } elsif ({
5596                      table => 1, caption => 1, td => 1, th => 1,                      table => 1, caption => 1, td => 1, th => 1,
5597                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5598                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5599                !!!cp ('t368');
5600              last INSCOPE;              last INSCOPE;
5601            }            }
5602          } # INSCOPE          } # INSCOPE
5603                        
5604          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5605                        
5606          $self->{content_model_flag} = 'PLAINTEXT';          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;
5607                        
5608          !!!next-token;          !!!next-token;
5609          return;          redo B;
5610        } elsif ({        } elsif ({
5611                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
5612                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
# Line 2738  sub _tree_construction_main ($) { Line 5614  sub _tree_construction_main ($) {
5614          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5615            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
5616            if ($node->[1] eq 'p') {            if ($node->[1] eq 'p') {
5617                !!!cp ('t369');
5618              !!!back-token;              !!!back-token;
5619              $token = {type => 'end tag', tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5620              return;              redo B;
5621            } elsif ({            } elsif ({
5622                      table => 1, caption => 1, td => 1, th => 1,                      table => 1, caption => 1, td => 1, th => 1,
5623                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5624                     }->{$node->[1]}) {                     }->{$node->[1]}) {
5625                !!!cp ('t370');
5626              last INSCOPE;              last INSCOPE;
5627            }            }
5628          } # INSCOPE          } # INSCOPE
# Line 2775  sub _tree_construction_main ($) { Line 5653  sub _tree_construction_main ($) {
5653          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5654                        
5655          !!!next-token;          !!!next-token;
5656          return;          redo B;
5657        } elsif ($token->{tag_name} eq 'a') {        } elsif ($token->{tag_name} eq 'a') {
5658          AFE: for my $i (reverse 0..$#$active_formatting_elements) {          AFE: for my $i (reverse 0..$#$active_formatting_elements) {
5659            my $node = $active_formatting_elements->[$i];            my $node = $active_formatting_elements->[$i];
5660            if ($node->[1] eq 'a') {            if ($node->[1] eq 'a') {
5661                !!!cp ('t371');
5662              !!!parse-error (type => 'in a:a');              !!!parse-error (type => 'in a:a');
5663                            
5664              !!!back-token;              !!!back-token;
5665              $token = {type => 'end tag', tag_name => 'a'};              $token = {type => END_TAG_TOKEN, tag_name => 'a'};
5666              $formatting_end_tag->($token->{tag_name});              $formatting_end_tag->($token->{tag_name});
5667                            
5668              AFE2: for (reverse 0..$#$active_formatting_elements) {              AFE2: for (reverse 0..$#$active_formatting_elements) {
5669                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
5670                    !!!cp ('t372');
5671                  splice @$active_formatting_elements, $_, 1;                  splice @$active_formatting_elements, $_, 1;
5672                  last AFE2;                  last AFE2;
5673                }                }
5674              } # AFE2              } # AFE2
5675              OE: for (reverse 0..$#{$self->{open_elements}}) {              OE: for (reverse 0..$#{$self->{open_elements}}) {
5676                if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {                if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {
5677                    !!!cp ('t373');
5678                  splice @{$self->{open_elements}}, $_, 1;                  splice @{$self->{open_elements}}, $_, 1;
5679                  last OE;                  last OE;
5680                }                }
5681              } # OE              } # OE
5682              last AFE;              last AFE;
5683            } elsif ($node->[0] eq '#marker') {            } elsif ($node->[0] eq '#marker') {
5684                !!!cp ('t374');
5685              last AFE;              last AFE;
5686            }            }
5687          } # AFE          } # AFE
# Line 2810  sub _tree_construction_main ($) { Line 5692  sub _tree_construction_main ($) {
5692          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
5693    
5694          !!!next-token;          !!!next-token;
5695          return;          redo B;
5696        } elsif ({        } elsif ({
5697                  b => 1, big => 1, em => 1, font => 1, i => 1,                  b => 1, big => 1, em => 1, font => 1, i => 1,
5698                  s => 1, small => 1, strile => 1,                  s => 1, small => 1, strile => 1,
5699                  strong => 1, tt => 1, u => 1,                  strong => 1, tt => 1, u => 1,
5700                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5701            !!!cp ('t375');
5702          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5703                    
5704          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5705          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
5706                    
5707          !!!next-token;          !!!next-token;
5708          return;          redo B;
5709        } elsif ($token->{tag_name} eq 'nobr') {        } elsif ($token->{tag_name} eq 'nobr') {
5710          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5711    
# Line 2830  sub _tree_construction_main ($) { Line 5713  sub _tree_construction_main ($) {
5713          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5714            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
5715            if ($node->[1] eq 'nobr') {            if ($node->[1] eq 'nobr') {
5716              !!!parse-error (type => 'not closed:nobr');              !!!cp ('t376');
5717                !!!parse-error (type => 'in nobr:nobr');
5718              !!!back-token;              !!!back-token;
5719              $token = {type => 'end tag', tag_name => 'nobr'};              $token = {type => END_TAG_TOKEN, tag_name => 'nobr'};
5720              return;              redo B;
5721            } elsif ({            } elsif ({
5722                      table => 1, caption => 1, td => 1, th => 1,                      table => 1, caption => 1, td => 1, th => 1,
5723                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5724                     }->{$node->[1]}) {                     }->{$node->[1]}) {
5725                !!!cp ('t377');
5726              last INSCOPE;              last INSCOPE;
5727            }            }
5728          } # INSCOPE          } # INSCOPE
# Line 2846  sub _tree_construction_main ($) { Line 5731  sub _tree_construction_main ($) {
5731          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
5732                    
5733          !!!next-token;          !!!next-token;
5734          return;          redo B;
5735        } elsif ($token->{tag_name} eq 'button') {        } elsif ($token->{tag_name} eq 'button') {
5736          ## has a button element in scope          ## has a button element in scope
5737          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5738            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
5739            if ($node->[1] eq 'button') {            if ($node->[1] eq 'button') {
5740                !!!cp ('t378');
5741              !!!parse-error (type => 'in button:button');              !!!parse-error (type => 'in button:button');
5742              !!!back-token;              !!!back-token;
5743              $token = {type => 'end tag', tag_name => 'button'};              $token = {type => END_TAG_TOKEN, tag_name => 'button'};
5744              return;              redo B;
5745            } elsif ({            } elsif ({
5746                      table => 1, caption => 1, td => 1, th => 1,                      table => 1, caption => 1, td => 1, th => 1,
5747                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5748                     }->{$node->[1]}) {                     }->{$node->[1]}) {
5749                !!!cp ('t379');
5750              last INSCOPE;              last INSCOPE;
5751            }            }
5752          } # INSCOPE          } # INSCOPE
# Line 2870  sub _tree_construction_main ($) { Line 5757  sub _tree_construction_main ($) {
5757          push @$active_formatting_elements, ['#marker', ''];          push @$active_formatting_elements, ['#marker', ''];
5758    
5759          !!!next-token;          !!!next-token;
5760          return;          redo B;
5761        } elsif ($token->{tag_name} eq 'marquee' or        } elsif ($token->{tag_name} eq 'marquee' or
5762                 $token->{tag_name} eq 'object') {                 $token->{tag_name} eq 'object') {
5763            !!!cp ('t380');
5764          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5765                    
5766          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5767          push @$active_formatting_elements, ['#marker', ''];          push @$active_formatting_elements, ['#marker', ''];
5768                    
5769          !!!next-token;          !!!next-token;
5770          return;          redo B;
5771        } elsif ($token->{tag_name} eq 'xmp') {        } elsif ($token->{tag_name} eq 'xmp') {
5772            !!!cp ('t381');
5773          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5774          $parse_rcdata->('CDATA', $insert);          $parse_rcdata->(CDATA_CONTENT_MODEL, $insert);
5775          return;          redo B;
5776        } elsif ($token->{tag_name} eq 'table') {        } elsif ($token->{tag_name} eq 'table') {
5777          ## has a p element in scope          ## has a p element in scope
5778          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5779            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5780                !!!cp ('t382');
5781              !!!back-token;              !!!back-token;
5782              $token = {type => 'end tag', tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5783              return;              redo B;
5784            } elsif ({            } elsif ({
5785                      table => 1, caption => 1, td => 1, th => 1,                      table => 1, caption => 1, td => 1, th => 1,
5786                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5787                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5788                !!!cp ('t383');
5789              last INSCOPE;              last INSCOPE;
5790            }            }
5791          } # INSCOPE          } # INSCOPE
5792                        
5793          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5794                        
5795          $self->{insertion_mode} = 'in table';          $self->{insertion_mode} = IN_TABLE_IM;
5796                        
5797          !!!next-token;          !!!next-token;
5798          return;          redo B;
5799        } elsif ({        } elsif ({
5800                  area => 1, basefont => 1, bgsound => 1, br => 1,                  area => 1, basefont => 1, bgsound => 1, br => 1,
5801                  embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,                  embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,
5802                  image => 1,                  image => 1,
5803                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5804          if ($token->{tag_name} eq 'image') {          if ($token->{tag_name} eq 'image') {
5805              !!!cp ('t384');
5806            !!!parse-error (type => 'image');            !!!parse-error (type => 'image');
5807            $token->{tag_name} = 'img';            $token->{tag_name} = 'img';
5808            } else {
5809              !!!cp ('t385');
5810          }          }
5811    
5812          ## NOTE: There is an "as if <br>" code clone.          ## NOTE: There is an "as if <br>" code clone.
# Line 2922  sub _tree_construction_main ($) { Line 5816  sub _tree_construction_main ($) {
5816          pop @{$self->{open_elements}};          pop @{$self->{open_elements}};
5817                    
5818          !!!next-token;          !!!next-token;
5819          return;          redo B;
5820        } elsif ($token->{tag_name} eq 'hr') {        } elsif ($token->{tag_name} eq 'hr') {
5821          ## has a p element in scope          ## has a p element in scope
5822          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5823            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5824                !!!cp ('t386');
5825              !!!back-token;              !!!back-token;
5826              $token = {type => 'end tag', tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5827              return;              redo B;
5828            } elsif ({            } elsif ({
5829                      table => 1, caption => 1, td => 1, th => 1,                      table => 1, caption => 1, td => 1, th => 1,
5830                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5831                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5832                !!!cp ('t387');
5833              last INSCOPE;              last INSCOPE;
5834            }            }
5835          } # INSCOPE          } # INSCOPE
# Line 2942  sub _tree_construction_main ($) { Line 5838  sub _tree_construction_main ($) {
5838          pop @{$self->{open_elements}};          pop @{$self->{open_elements}};
5839                        
5840          !!!next-token;          !!!next-token;
5841          return;          redo B;
5842        } elsif ($token->{tag_name} eq 'input') {        } elsif ($token->{tag_name} eq 'input') {
5843            !!!cp ('t388');
5844          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5845                    
5846          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
# Line 2951  sub _tree_construction_main ($) { Line 5848  sub _tree_construction_main ($) {
5848          pop @{$self->{open_elements}};          pop @{$self->{open_elements}};
5849                    
5850          !!!next-token;          !!!next-token;
5851          return;          redo B;
5852        } elsif ($token->{tag_name} eq 'isindex') {        } elsif ($token->{tag_name} eq 'isindex') {
5853          !!!parse-error (type => 'isindex');          !!!parse-error (type => 'isindex');
5854                    
5855          if (defined $self->{form_element}) {          if (defined $self->{form_element}) {
5856              !!!cp ('t389');
5857            ## Ignore the token            ## Ignore the token
5858            !!!next-token;            !!!next-token;
5859            return;            redo B;
5860          } else {          } else {
5861            my $at = $token->{attributes};            my $at = $token->{attributes};
5862            my $form_attrs;            my $form_attrs;
# Line 2968  sub _tree_construction_main ($) { Line 5866  sub _tree_construction_main ($) {
5866            delete $at->{action};            delete $at->{action};
5867            delete $at->{prompt};            delete $at->{prompt};
5868            my @tokens = (            my @tokens = (
5869                          {type => 'start tag', tag_name => 'form',                          {type => START_TAG_TOKEN, tag_name => 'form',
5870                           attributes => $form_attrs},                           attributes => $form_attrs},
5871                          {type => 'start tag', tag_name => 'hr'},                          {type => START_TAG_TOKEN, tag_name => 'hr'},
5872                          {type => 'start tag', tag_name => 'p'},                          {type => START_TAG_TOKEN, tag_name => 'p'},
5873                          {type => 'start tag', tag_name => 'label'},                          {type => START_TAG_TOKEN, tag_name => 'label'},
5874                         );                         );
5875            if ($prompt_attr) {            if ($prompt_attr) {
5876              push @tokens, {type => 'character', data => $prompt_attr->{value}};              !!!cp ('t390');
5877                push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value}};
5878            } else {            } else {
5879              push @tokens, {type => 'character',              !!!cp ('t391');
5880                push @tokens, {type => CHARACTER_TOKEN,
5881                             data => 'This is a searchable index. Insert your search keywords here: '}; # SHOULD                             data => 'This is a searchable index. Insert your search keywords here: '}; # SHOULD
5882              ## TODO: make this configurable              ## TODO: make this configurable
5883            }            }
5884            push @tokens,            push @tokens,
5885                          {type => 'start tag', tag_name => 'input', attributes => $at},                          {type => START_TAG_TOKEN, tag_name => 'input', attributes => $at},
5886                          #{type => 'character', data => ''}, # SHOULD                          #{type => CHARACTER_TOKEN, data => ''}, # SHOULD
5887                          {type => 'end tag', tag_name => 'label'},                          {type => END_TAG_TOKEN, tag_name => 'label'},
5888                          {type => 'end tag', tag_name => 'p'},                          {type => END_TAG_TOKEN, tag_name => 'p'},
5889                          {type => 'start tag', tag_name => 'hr'},                          {type => START_TAG_TOKEN, tag_name => 'hr'},
5890                          {type => 'end tag', tag_name => 'form'};                          {type => END_TAG_TOKEN, tag_name => 'form'};
5891            $token = shift @tokens;            $token = shift @tokens;
5892            !!!back-token (@tokens);            !!!back-token (@tokens);
5893            return;            redo B;
5894          }          }
5895        } elsif ($token->{tag_name} eq 'textarea') {        } elsif ($token->{tag_name} eq 'textarea') {
5896          my $tag_name = $token->{tag_name};          my $tag_name = $token->{tag_name};
# Line 2998  sub _tree_construction_main ($) { Line 5898  sub _tree_construction_main ($) {
5898          !!!create-element ($el, $token->{tag_name}, $token->{attributes});          !!!create-element ($el, $token->{tag_name}, $token->{attributes});
5899                    
5900          ## TODO: $self->{form_element} if defined          ## TODO: $self->{form_element} if defined
5901          $self->{content_model_flag} = 'RCDATA';          $self->{content_model} = RCDATA_CONTENT_MODEL;
5902          delete $self->{escape}; # MUST          delete $self->{escape}; # MUST
5903                    
5904          $insert->($el);          $insert->($el);
5905                    
5906          my $text = '';          my $text = '';
5907          !!!next-token;          !!!next-token;
5908          if ($token->{type} eq 'character') {          if ($token->{type} == CHARACTER_TOKEN) {
5909            $token->{data} =~ s/^\x0A//;            $token->{data} =~ s/^\x0A//;
5910            unless (length $token->{data}) {            unless (length $token->{data}) {
5911                !!!cp ('t392');
5912              !!!next-token;              !!!next-token;
5913              } else {
5914                !!!cp ('t393');
5915            }            }
5916            } else {
5917              !!!cp ('t394');
5918          }          }
5919          while ($token->{type} eq 'character') {          while ($token->{type} == CHARACTER_TOKEN) {
5920              !!!cp ('t395');
5921            $text .= $token->{data};            $text .= $token->{data};
5922            !!!next-token;            !!!next-token;
5923          }          }
5924          if (length $text) {          if (length $text) {
5925              !!!cp ('t396');
5926            $el->manakai_append_text ($text);            $el->manakai_append_text ($text);
5927          }          }
5928                    
5929          $self->{content_model_flag} = 'PCDATA';          $self->{content_model} = PCDATA_CONTENT_MODEL;
5930                    
5931          if ($token->{type} eq 'end tag' and          if ($token->{type} == END_TAG_TOKEN and
5932              $token->{tag_name} eq $tag_name) {              $token->{tag_name} eq $tag_name) {
5933              !!!cp ('t397');
5934            ## Ignore the token            ## Ignore the token
5935          } else {          } else {
5936              !!!cp ('t398');
5937            !!!parse-error (type => 'in RCDATA:#'.$token->{type});            !!!parse-error (type => 'in RCDATA:#'.$token->{type});
5938          }          }
5939          !!!next-token;          !!!next-token;
5940          return;          redo B;
5941        } elsif ({        } elsif ({
5942                  iframe => 1,                  iframe => 1,
5943                  noembed => 1,                  noembed => 1,
5944                  noframes => 1,                  noframes => 1,
5945                  noscript => 0, ## TODO: 1 if scripting is enabled                  noscript => 0, ## TODO: 1 if scripting is enabled
5946                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5947          $parse_rcdata->('CDATA', $insert);          !!!cp ('t399');
5948          return;          ## NOTE: There is an "as if in body" code clone.
5949            $parse_rcdata->(CDATA_CONTENT_MODEL, $insert);
5950            redo B;
5951        } elsif ($token->{tag_name} eq 'select') {        } elsif ($token->{tag_name} eq 'select') {
5952            !!!cp ('t400');
5953          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5954                    
5955          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5956                    
5957          $self->{insertion_mode} = 'in select';          $self->{insertion_mode} = IN_SELECT_IM;
5958          !!!next-token;          !!!next-token;
5959          return;          redo B;
5960        } elsif ({        } elsif ({
5961                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
5962                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
5963                  tbody => 1, td => 1, tfoot => 1, th => 1,                  tbody => 1, td => 1, tfoot => 1, th => 1,
5964                  thead => 1, tr => 1,                  thead => 1, tr => 1,
5965                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5966            !!!cp ('t401');
5967          !!!parse-error (type => 'in body:'.$token->{tag_name});          !!!parse-error (type => 'in body:'.$token->{tag_name});
5968          ## Ignore the token          ## Ignore the token
5969          !!!next-token;          !!!next-token;
5970          return;          redo B;
5971                    
5972          ## ISSUE: An issue on HTML5 new elements in the spec.          ## ISSUE: An issue on HTML5 new elements in the spec.
5973        } else {        } else {
5974            !!!cp ('t402');
5975          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5976                    
5977          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5978                    
5979          !!!next-token;          !!!next-token;
5980          return;          redo B;
5981        }        }
5982      } elsif ($token->{type} eq 'end tag') {      } elsif ($token->{type} == END_TAG_TOKEN) {
5983        if ($token->{tag_name} eq 'body') {        if ($token->{tag_name} eq 'body') {
5984          if (@{$self->{open_elements}} > 1 and          if (@{$self->{open_elements}} > 1 and
5985              $self->{open_elements}->[1]->[1] eq 'body') {              $self->{open_elements}->[1]->[1] eq 'body') {
# Line 3075  sub _tree_construction_main ($) { Line 5989  sub _tree_construction_main ($) {
5989                         th => 1, tr => 1, body => 1, html => 1,                         th => 1, tr => 1, body => 1, html => 1,
5990                       tbody => 1, tfoot => 1, thead => 1,                       tbody => 1, tfoot => 1, thead => 1,
5991                      }->{$_->[1]}) {                      }->{$_->[1]}) {
5992                  !!!cp ('t403');
5993                !!!parse-error (type => 'not closed:'.$_->[1]);                !!!parse-error (type => 'not closed:'.$_->[1]);
5994                } else {
5995                  !!!cp ('t404');
5996              }              }
5997            }            }
5998    
5999            $self->{insertion_mode} = 'after body';            $self->{insertion_mode} = AFTER_BODY_IM;
6000            !!!next-token;            !!!next-token;
6001            return;            redo B;
6002          } else {          } else {
6003              !!!cp ('t405');
6004            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6005            ## Ignore the token            ## Ignore the token
6006            !!!next-token;            !!!next-token;
6007            return;            redo B;
6008          }          }
6009        } elsif ($token->{tag_name} eq 'html') {        } elsif ($token->{tag_name} eq 'html') {
6010          if (@{$self->{open_elements}} > 1 and $self->{open_elements}->[1]->[1] eq 'body') {          if (@{$self->{open_elements}} > 1 and $self->{open_elements}->[1]->[1] eq 'body') {
6011            ## ISSUE: There is an issue in the spec.            ## ISSUE: There is an issue in the spec.
6012            if ($self->{open_elements}->[-1]->[1] ne 'body') {            if ($self->{open_elements}->[-1]->[1] ne 'body') {
6013                !!!cp ('t406');
6014              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]);              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]);
6015              } else {
6016                !!!cp ('t407');
6017            }            }
6018            $self->{insertion_mode} = 'after body';            $self->{insertion_mode} = AFTER_BODY_IM;
6019            ## reprocess            ## reprocess
6020            return;            redo B;
6021          } else {          } else {
6022              !!!cp ('t408');
6023            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6024            ## Ignore the token            ## Ignore the token
6025            !!!next-token;            !!!next-token;
6026            return;            redo B;
6027          }          }
6028        } elsif ({        } elsif ({
6029                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
# Line 3125  sub _tree_construction_main ($) { Line 6047  sub _tree_construction_main ($) {
6047                   td => 1, th => 1, tr => 1,                   td => 1, th => 1, tr => 1,
6048                   tbody => 1, tfoot=> 1, thead => 1,                   tbody => 1, tfoot=> 1, thead => 1,
6049                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
6050                  !!!cp ('t409');
6051                !!!back-token;                !!!back-token;
6052                $token = {type => 'end tag',                $token = {type => END_TAG_TOKEN,
6053                          tag_name => $self->{open_elements}->[-1]->[1]}; # MUST                          tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
6054                return;                redo B;
6055              }              }
6056                
6057                !!!cp ('t410');
6058              $i = $_;              $i = $_;
6059              last INSCOPE unless $token->{tag_name} eq 'p';              last INSCOPE unless $token->{tag_name} eq 'p';
6060            } elsif ({            } elsif ({
6061                      table => 1, caption => 1, td => 1, th => 1,                      table => 1, caption => 1, td => 1, th => 1,
6062                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
6063                     }->{$node->[1]}) {                     }->{$node->[1]}) {
6064                !!!cp ('t411');
6065              last INSCOPE;              last INSCOPE;
6066            }            }
6067          } # INSCOPE          } # INSCOPE
6068                    
6069          if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {          if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6070            if (defined $i) {            if (defined $i) {
6071                !!!cp ('t412');
6072              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
6073            } else {            } else {
6074                !!!cp ('t413');
6075              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6076            }            }
6077          }          }
6078                    
6079          if (defined $i) {          if (defined $i) {
6080              !!!cp ('t414');
6081            splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
6082          } elsif ($token->{tag_name} eq 'p') {          } elsif ($token->{tag_name} eq 'p') {
6083              !!!cp ('t415');
6084            ## As if <p>, then reprocess the current token            ## As if <p>, then reprocess the current token
6085            my $el;            my $el;
6086            !!!create-element ($el, 'p');            !!!create-element ($el, 'p');
6087            $insert->($el);            $insert->($el);
6088            } else {
6089              !!!cp ('t416');
6090          }          }
6091          $clear_up_to_marker->()          $clear_up_to_marker->()
6092            if {            if {
6093              button => 1, marquee => 1, object => 1,              button => 1, marquee => 1, object => 1,
6094            }->{$token->{tag_name}};            }->{$token->{tag_name}};
6095          !!!next-token;          !!!next-token;
6096          return;          redo B;
6097        } elsif ($token->{tag_name} eq 'form') {        } elsif ($token->{tag_name} eq 'form') {
6098          ## has an element in scope          ## has an element in scope
6099          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
# Line 3173  sub _tree_construction_main ($) { Line 6105  sub _tree_construction_main ($) {
6105                   td => 1, th => 1, tr => 1,                   td => 1, th => 1, tr => 1,
6106                   tbody => 1, tfoot=> 1, thead => 1,                   tbody => 1, tfoot=> 1, thead => 1,
6107                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
6108                  !!!cp ('t417');
6109                !!!back-token;                !!!back-token;
6110                $token = {type => 'end tag',                $token = {type => END_TAG_TOKEN,
6111                          tag_name => $self->{open_elements}->[-1]->[1]}; # MUST                          tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
6112                return;                redo B;
6113              }              }
6114                
6115                !!!cp ('t418');
6116              last INSCOPE;              last INSCOPE;
6117            } elsif ({            } elsif ({
6118                      table => 1, caption => 1, td => 1, th => 1,                      table => 1, caption => 1, td => 1, th => 1,
6119                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
6120                     }->{$node->[1]}) {                     }->{$node->[1]}) {
6121                !!!cp ('t419');
6122              last INSCOPE;              last INSCOPE;
6123            }            }
6124          } # INSCOPE          } # INSCOPE
6125                    
6126          if ($self->{open_elements}->[-1]->[1] eq $token->{tag_name}) {          if ($self->{open_elements}->[-1]->[1] eq $token->{tag_name}) {
6127              !!!cp ('t420');
6128            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
6129          } else {          } else {
6130            !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);            !!!cp ('t421');
6131              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6132          }          }
6133    
6134          undef $self->{form_element};          undef $self->{form_element};
6135          !!!next-token;          !!!next-token;
6136          return;          redo B;
6137        } elsif ({        } elsif ({
6138                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
6139                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
# Line 3212  sub _tree_construction_main ($) { Line 6150  sub _tree_construction_main ($) {
6150                   td => 1, th => 1, tr => 1,                   td => 1, th => 1, tr => 1,
6151                   tbody => 1, tfoot=> 1, thead => 1,                   tbody => 1, tfoot=> 1, thead => 1,
6152                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
6153                  !!!cp ('t422');
6154                !!!back-token;                !!!back-token;
6155                $token = {type => 'end tag',                $token = {type => END_TAG_TOKEN,
6156                          tag_name => $self->{open_elements}->[-1]->[1]}; # MUST                          tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
6157                return;                redo B;
6158              }              }
6159    
6160                !!!cp ('t423');
6161              $i = $_;              $i = $_;
6162              last INSCOPE;              last INSCOPE;
6163            } elsif ({            } elsif ({
6164                      table => 1, caption => 1, td => 1, th => 1,                      table => 1, caption => 1, td => 1, th => 1,
6165                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
6166                     }->{$node->[1]}) {                     }->{$node->[1]}) {
6167                !!!cp ('t424');
6168              last INSCOPE;              last INSCOPE;
6169            }            }
6170          } # INSCOPE          } # INSCOPE
6171                    
6172          if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {          if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6173            !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);            !!!cp ('t425');
6174              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6175            } else {
6176              !!!cp ('t426');
6177          }          }
6178                    
6179          splice @{$self->{open_elements}}, $i if defined $i;          splice @{$self->{open_elements}}, $i if defined $i;
6180          !!!next-token;          !!!next-token;
6181          return;          redo B;
6182        } elsif ({        } elsif ({
6183                  a => 1,                  a => 1,
6184                  b => 1, big => 1, em => 1, font => 1, i => 1,                  b => 1, big => 1, em => 1, font => 1, i => 1,
6185                  nobr => 1, s => 1, small => 1, strile => 1,                  nobr => 1, s => 1, small => 1, strile => 1,
6186                  strong => 1, tt => 1, u => 1,                  strong => 1, tt => 1, u => 1,
6187                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6188            !!!cp ('t427');
6189          $formatting_end_tag->($token->{tag_name});          $formatting_end_tag->($token->{tag_name});
6190          return;          redo B;
6191        } elsif ($token->{tag_name} eq 'br') {        } elsif ($token->{tag_name} eq 'br') {
6192            !!!cp ('t428');
6193          !!!parse-error (type => 'unmatched end tag:br');          !!!parse-error (type => 'unmatched end tag:br');
6194    
6195          ## As if <br>          ## As if <br>
# Line 3254  sub _tree_construction_main ($) { Line 6201  sub _tree_construction_main ($) {
6201                    
6202          ## Ignore the token.          ## Ignore the token.
6203          !!!next-token;          !!!next-token;
6204          return;          redo B;
6205        } elsif ({        } elsif ({
6206                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
6207                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
# Line 3267  sub _tree_construction_main ($) { Line 6214  sub _tree_construction_main ($) {
6214                  table => 1, textarea => 1, wbr => 1,                  table => 1, textarea => 1, wbr => 1,
6215                  noscript => 0, ## TODO: if scripting is enabled                  noscript => 0, ## TODO: if scripting is enabled
6216                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6217            !!!cp ('t429');
6218          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6219          ## Ignore the token          ## Ignore the token
6220          !!!next-token;          !!!next-token;
6221          return;          redo B;
6222                    
6223          ## ISSUE: Issue on HTML5 new elements in spec          ## ISSUE: Issue on HTML5 new elements in spec
6224                    
# Line 3287  sub _tree_construction_main ($) { Line 6235  sub _tree_construction_main ($) {
6235              if ({              if ({
6236                   dd => 1, dt => 1, li => 1, p => 1,                   dd => 1, dt => 1, li => 1, p => 1,
6237                   td => 1, th => 1, tr => 1,                   td => 1, th => 1, tr => 1,
6238                   tbody => 1, tfoot=> 1, thead => 1,                   tbody => 1, tfoot => 1, thead => 1,
6239                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
6240                  !!!cp ('t430');
6241                !!!back-token;                !!!back-token;
6242                $token = {type => 'end tag',                $token = {type => END_TAG_TOKEN,
6243                          tag_name => $self->{open_elements}->[-1]->[1]}; # MUST                          tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
6244                return;                redo B;
6245              }              }
6246                    
6247              ## Step 2              ## Step 2
6248              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {
6249                  !!!cp ('t431');
6250                  ## NOTE: <x><y></x>
6251                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
6252                } else {
6253                  !!!cp ('t432');
6254              }              }
6255                            
6256              ## Step 3              ## Step 3
# Line 3311  sub _tree_construction_main ($) { Line 6264  sub _tree_construction_main ($) {
6264                  #not $phrasing_category->{$node->[1]} and                  #not $phrasing_category->{$node->[1]} and
6265                  ($special_category->{$node->[1]} or                  ($special_category->{$node->[1]} or
6266                   $scoping_category->{$node->[1]})) {                   $scoping_category->{$node->[1]})) {
6267                  !!!cp ('t433');
6268                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6269                ## Ignore the token                ## Ignore the token
6270                !!!next-token;                !!!next-token;
6271                last S2;                last S2;
6272              }              }
6273    
6274                !!!cp ('t434');
6275            }            }
6276                        
6277            ## Step 4            ## Step 4
# Line 3325  sub _tree_construction_main ($) { Line 6281  sub _tree_construction_main ($) {
6281            ## Step 5;            ## Step 5;
6282            redo S2;            redo S2;
6283          } # S2          } # S2
6284          return;          redo B;
       }  
     }  
   }; # $in_body  
   
   B: {  
     if ($self->{insertion_mode} ne 'trailing end') {  
       if ($token->{type} eq 'DOCTYPE') {  
         !!!parse-error (type => 'in html:#DOCTYPE');  
         ## Ignore the token  
         ## Stay in the phase  
         !!!next-token;  
         redo B;  
       } elsif ($token->{type} eq 'start tag' and  
                $token->{tag_name} eq 'html') {  
 ## ISSUE: "aa<html>" is not a parse error.  
 ## ISSUE: "<html>" in fragment is not a parse error.  
         unless ($token->{first_start_tag}) {  
           !!!parse-error (type => 'not first start tag');  
         }  
         my $top_el = $self->{open_elements}->[0]->[0];  
         for my $attr_name (keys %{$token->{attributes}}) {  
           unless ($top_el->has_attribute_ns (undef, $attr_name)) {  
             $top_el->set_attribute_ns  
               (undef, [undef, $attr_name],  
                $token->{attributes}->{$attr_name}->{value});  
           }  
         }  
         !!!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,  
              tbody => 1, tfoot=> 1, thead => 1,  
             }->{$self->{open_elements}->[-1]->[1]}) {  
           !!!back-token;  
           $token = {type => 'end tag', tag_name => $self->{open_elements}->[-1]->[1]};  
           redo B;  
         }  
           
         if (@{$self->{open_elements}} > 2 or  
             (@{$self->{open_elements}} == 2 and $self->{open_elements}->[1]->[1] ne 'body')) {  
           !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
         } elsif (defined $self->{inner_html_node} and  
                  @{$self->{open_elements}} > 1 and  
                  $self->{open_elements}->[1]->[1] ne 'body') {  
           !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
         }  
   
         ## Stop parsing  
         last B;  
   
         ## ISSUE: There is an issue in the spec.  
       } else {  
         if ($self->{insertion_mode} eq 'before head') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);  
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
             ## As if <head>  
             !!!create-element ($self->{head_element}, 'head');  
             $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});  
             push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
             $self->{insertion_mode} = 'in head';  
             ## reprocess  
             redo B;  
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             my $attr = $token->{tag_name} eq 'head' ? $token->{attributes} : {};  
             !!!create-element ($self->{head_element}, 'head', $attr);  
             $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});  
             push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
             $self->{insertion_mode} = 'in head';  
             if ($token->{tag_name} eq 'head') {  
               !!!next-token;  
             #} elsif ({  
             #          base => 1, link => 1, meta => 1,  
             #          script => 1, style => 1, title => 1,  
             #         }->{$token->{tag_name}}) {  
             #  ## reprocess  
             } else {  
               ## reprocess  
             }  
             redo B;  
           } elsif ($token->{type} eq 'end tag') {  
             if ({  
                  head => 1, body => 1, html => 1,  
                  p => 1, br => 1,  
                 }->{$token->{tag_name}}) {  
               ## As if <head>  
               !!!create-element ($self->{head_element}, 'head');  
               $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});  
               push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
               $self->{insertion_mode} = 'in head';  
               ## reprocess  
               redo B;  
             } else {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
               ## Ignore the token ## ISSUE: An issue in the spec.  
               !!!next-token;  
               redo B;  
             }  
           } else {  
             die "$0: $token->{type}: Unknown type";  
           }  
         } elsif ($self->{insertion_mode} eq 'in head' or  
                  $self->{insertion_mode} eq 'in head noscript' or  
                  $self->{insertion_mode} eq 'after head') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);  
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
               
             #  
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ({base => ($self->{insertion_mode} eq 'in head' or  
                           $self->{insertion_mode} eq 'after head'),  
                  link => 1}->{$token->{tag_name}}) {  
               ## NOTE: There is a "as if in head" code clone.  
               if ($self->{insertion_mode} eq 'after head') {  
                 !!!parse-error (type => 'after head:'.$token->{tag_name});  
                 push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
               }  
               !!!insert-element ($token->{tag_name}, $token->{attributes});  
               pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.  
               pop @{$self->{open_elements}}  
                   if $self->{insertion_mode} eq 'after head';  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'meta') {  
               ## NOTE: There is a "as if in head" code clone.  
               if ($self->{insertion_mode} eq 'after head') {  
                 !!!parse-error (type => 'after head:'.$token->{tag_name});  
                 push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
               }  
               !!!insert-element ($token->{tag_name}, $token->{attributes});  
               pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.  
   
               unless ($self->{confident}) {  
                 my $charset;  
                 if ($token->{attributes}->{charset}) { ## TODO: And if supported  
                   $charset = $token->{attributes}->{charset}->{value};  
                 }  
                 if ($token->{attributes}->{'http-equiv'}) {  
                   ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.  
                   if ($token->{attributes}->{'http-equiv'}->{value}  
                       =~ /\A[^;]*;[\x09-\x0D\x20]*charset[\x09-\x0D\x20]*=  
                           [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|  
                           ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {  
                     $charset = defined $1 ? $1 : defined $2 ? $2 : $3;  
                   } ## TODO: And if supported  
                 }  
                 ## TODO: Change the encoding  
               }  
   
               ## TODO: Extracting |charset| from |meta|.  
               pop @{$self->{open_elements}}  
                   if $self->{insertion_mode} eq 'after head';  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'title' and  
                      $self->{insertion_mode} eq 'in head') {  
               ## NOTE: There is a "as if in head" code clone.  
               if ($self->{insertion_mode} eq 'after head') {  
                 !!!parse-error (type => 'after head:'.$token->{tag_name});  
                 push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
               }  
               my $parent = defined $self->{head_element} ? $self->{head_element}  
                   : $self->{open_elements}->[-1]->[0];  
               $parse_rcdata->('RCDATA', sub { $parent->append_child ($_[0]) });  
               pop @{$self->{open_elements}}  
                   if $self->{insertion_mode} eq 'after head';  
               redo B;  
             } elsif ($token->{tag_name} eq 'style') {  
               ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and  
               ## insertion mode 'in head')  
               ## NOTE: There is a "as if in head" code clone.  
               if ($self->{insertion_mode} eq 'after head') {  
                 !!!parse-error (type => 'after head:'.$token->{tag_name});  
                 push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
               }  
               $parse_rcdata->('CDATA', $insert_to_current);  
               pop @{$self->{open_elements}}  
                   if $self->{insertion_mode} eq 'after head';  
               redo B;  
             } elsif ($token->{tag_name} eq 'noscript') {  
               if ($self->{insertion_mode} eq 'in head') {  
                 ## NOTE: and scripting is disalbed  
                 !!!insert-element ($token->{tag_name}, $token->{attributes});  
                 $self->{insertion_mode} = 'in head noscript';  
                 !!!next-token;  
                 redo B;  
               } elsif ($self->{insertion_mode} eq 'in head noscript') {  
                 !!!parse-error (type => 'in noscript:noscript');  
                 ## Ignore the token  
                 redo B;  
               } else {  
                 #  
               }  
             } elsif ($token->{tag_name} eq 'head' and  
                      $self->{insertion_mode} ne 'after head') {  
               !!!parse-error (type => 'in head:head'); # or in head noscript  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
             } elsif ($self->{insertion_mode} ne 'in head noscript' and  
                      $token->{tag_name} eq 'script') {  
               if ($self->{insertion_mode} eq 'after head') {  
                 !!!parse-error (type => 'after head:'.$token->{tag_name});  
                 push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
               }  
               ## NOTE: There is a "as if in head" code clone.  
               $script_start_tag->($insert_to_current);  
               pop @{$self->{open_elements}}  
                   if $self->{insertion_mode} eq 'after head';  
               redo B;  
             } elsif ($self->{insertion_mode} eq 'after head' and  
                      $token->{tag_name} eq 'body') {  
               !!!insert-element ('body', $token->{attributes});  
               $self->{insertion_mode} = 'in body';  
               !!!next-token;  
               redo B;  
             } elsif ($self->{insertion_mode} eq 'after head' and  
                      $token->{tag_name} eq 'frameset') {  
               !!!insert-element ('frameset', $token->{attributes});  
               $self->{insertion_mode} = 'in frameset';  
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($self->{insertion_mode} eq 'in head' and  
                 $token->{tag_name} eq 'head') {  
               pop @{$self->{open_elements}};  
               $self->{insertion_mode} = 'after head';  
               !!!next-token;  
               redo B;  
             } elsif ($self->{insertion_mode} eq 'in head noscript' and  
                 $token->{tag_name} eq 'noscript') {  
               pop @{$self->{open_elements}};  
               $self->{insertion_mode} = 'in head';  
               !!!next-token;  
               redo B;  
             } elsif ($self->{insertion_mode} eq 'in head' and  
                      {  
                       body => 1, html => 1,  
                       p => 1, br => 1,  
                      }->{$token->{tag_name}}) {  
               #  
             } elsif ($self->{insertion_mode} eq 'in head noscript' and  
                      {  
                       p => 1, br => 1,  
                      }->{$token->{tag_name}}) {  
               #  
             } elsif ($self->{insertion_mode} ne 'after head') {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
           } else {  
             #  
           }  
   
           ## As if </head> or </noscript> or <body>  
           if ($self->{insertion_mode} eq 'in head') {  
             pop @{$self->{open_elements}};  
             $self->{insertion_mode} = 'after head';  
           } elsif ($self->{insertion_mode} eq 'in head noscript') {  
             pop @{$self->{open_elements}};  
             !!!parse-error (type => 'in noscript:'.(defined $token->{tag_name} ? ($token->{type} eq 'end tag' ? '/' : '') . $token->{tag_name} : '#' . $token->{type}));  
             $self->{insertion_mode} = 'in head';  
           } else { # 'after head'  
             !!!insert-element ('body');  
             $self->{insertion_mode} = 'in body';  
           }  
           ## reprocess  
           redo B;  
   
           ## ISSUE: An issue in the spec.  
         } elsif ($self->{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);  
               
             $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
   
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'comment') {  
             ## NOTE: There is a code clone of "comment in body".  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } else {  
             $in_body->($insert_to_current);  
             redo B;  
           }  
         } elsif ($self->{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]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);  
                 
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
   
             !!!parse-error (type => 'in table:#character');  
   
             ## 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,  
                 }->{$self->{open_elements}->[-1]->[1]}) {  
               # MUST  
               my $foster_parent_element;  
               my $next_sibling;  
               my $prev_sibling;  
               OE: for (reverse 0..$#{$self->{open_elements}}) {  
                 if ($self->{open_elements}->[$_]->[1] eq 'table') {  
                   my $parent = $self->{open_elements}->[$_]->[0]->parent_node;  
                   if (defined $parent and $parent->node_type == 1) {  
                     $foster_parent_element = $parent;  
                     $next_sibling = $self->{open_elements}->[$_]->[0];  
                     $prev_sibling = $next_sibling->previous_sibling;  
                   } else {  
                     $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];  
                     $prev_sibling = $foster_parent_element->last_child;  
                   }  
                   last OE;  
                 }  
               } # OE  
               $foster_parent_element = $self->{open_elements}->[0]->[0] and  
               $prev_sibling = $foster_parent_element->last_child  
                 unless defined $foster_parent_element;  
               if (defined $prev_sibling and  
                   $prev_sibling->node_type == 3) {  
                 $prev_sibling->manakai_append_text ($token->{data});  
               } else {  
                 $foster_parent_element->insert_before  
                   ($self->{document}->create_text_node ($token->{data}),  
                    $next_sibling);  
               }  
             } else {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
             }  
               
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ({  
                  caption => 1,  
                  colgroup => 1,  
                  tbody => 1, tfoot => 1, thead => 1,  
                 }->{$token->{tag_name}}) {  
               ## Clear back to table context  
               while ($self->{open_elements}->[-1]->[1] ne 'table' and  
                      $self->{open_elements}->[-1]->[1] ne 'html') {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{open_elements}};  
               }  
   
               push @$active_formatting_elements, ['#marker', '']  
                 if $token->{tag_name} eq 'caption';  
   
               !!!insert-element ($token->{tag_name}, $token->{attributes});  
               $self->{insertion_mode} = {  
                                  caption => 'in caption',  
                                  colgroup => 'in column group',  
                                  tbody => 'in table body',  
                                  tfoot => 'in table body',  
                                  thead => 'in table body',  
                                 }->{$token->{tag_name}};  
               !!!next-token;  
               redo B;  
             } elsif ({  
                       col => 1,  
                       td => 1, th => 1, tr => 1,  
                      }->{$token->{tag_name}}) {  
               ## Clear back to table context  
               while ($self->{open_elements}->[-1]->[1] ne 'table' and  
                      $self->{open_elements}->[-1]->[1] ne 'html') {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{open_elements}};  
               }  
   
               !!!insert-element ($token->{tag_name} eq 'col' ? 'colgroup' : 'tbody');  
               $self->{insertion_mode} = $token->{tag_name} eq 'col'  
                 ? 'in column group' : 'in table body';  
               ## reprocess  
               redo B;  
             } elsif ($token->{tag_name} eq 'table') {  
               ## NOTE: There are code clones for this "table in table"  
               !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
   
               ## As if </table>  
               ## have a table element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'table') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:table');  
                 ## Ignore tokens </table><table>  
                 !!!next-token;  
                 redo B;  
               }  
                 
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                    tbody => 1, tfoot=> 1, thead => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token; # <table>  
                 $token = {type => 'end tag', tag_name => 'table'};  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
               }  
   
               if ($self->{open_elements}->[-1]->[1] ne 'table') {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
               }  
   
               splice @{$self->{open_elements}}, $i;  
   
               $self->_reset_insertion_mode;  
   
               ## reprocess  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'table') {  
               ## have a table element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
                 
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                    tbody => 1, tfoot=> 1, thead => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
               }  
   
               if ($self->{open_elements}->[-1]->[1] ne 'table') {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
               }  
   
               splice @{$self->{open_elements}}, $i;  
   
               $self->_reset_insertion_mode;  
   
               !!!next-token;  
               redo B;  
             } elsif ({  
                       body => 1, caption => 1, col => 1, colgroup => 1,  
                       html => 1, tbody => 1, td => 1, tfoot => 1, th => 1,  
                       thead => 1, tr => 1,  
                      }->{$token->{tag_name}}) {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
           } else {  
             #  
           }  
   
           !!!parse-error (type => 'in table:'.$token->{tag_name});  
           $in_body->($insert_to_foster);  
           redo B;  
         } elsif ($self->{insertion_mode} eq 'in caption') {  
           if ($token->{type} eq 'character') {  
             ## NOTE: This is a code clone of "character in body".  
             $reconstruct_active_formatting_elements->($insert_to_current);  
               
             $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
   
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'comment') {  
             ## NOTE: This is a code clone of "comment in body".  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ({  
                  caption => 1, col => 1, colgroup => 1, tbody => 1,  
                  td => 1, tfoot => 1, th => 1, thead => 1, tr => 1,  
                 }->{$token->{tag_name}}) {  
               !!!parse-error (type => 'not closed:caption');  
   
               ## As if </caption>  
               ## have a table element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'caption') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:caption');  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
                 
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                    tbody => 1, tfoot=> 1, thead => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token; # <?>  
                 $token = {type => 'end tag', tag_name => 'caption'};  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
               }  
   
               if ($self->{open_elements}->[-1]->[1] ne 'caption') {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
               }  
   
               splice @{$self->{open_elements}}, $i;  
   
               $clear_up_to_marker->();  
   
               $self->{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  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
                 
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                    tbody => 1, tfoot=> 1, thead => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
               }  
   
               if ($self->{open_elements}->[-1]->[1] ne 'caption') {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
               }  
   
               splice @{$self->{open_elements}}, $i;  
   
               $clear_up_to_marker->();  
   
               $self->{insertion_mode} = 'in table';  
   
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'table') {  
               !!!parse-error (type => 'not closed:caption');  
   
               ## As if </caption>  
               ## have a table element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'caption') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:caption');  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
                 
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                    tbody => 1, tfoot=> 1, thead => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token; # </table>  
                 $token = {type => 'end tag', tag_name => 'caption'};  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
               }  
   
               if ($self->{open_elements}->[-1]->[1] ne 'caption') {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
               }  
   
               splice @{$self->{open_elements}}, $i;  
   
               $clear_up_to_marker->();  
   
               $self->{insertion_mode} = 'in table';  
   
               ## reprocess  
               redo B;  
             } elsif ({  
                       body => 1, col => 1, colgroup => 1,  
                       html => 1, tbody => 1, td => 1, tfoot => 1,  
                       th => 1, thead => 1, tr => 1,  
                      }->{$token->{tag_name}}) {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
               ## Ignore the token  
               redo B;  
             } else {  
               #  
             }  
           } else {  
             #  
           }  
                 
           $in_body->($insert_to_current);  
           redo B;  
         } elsif ($self->{insertion_mode} eq 'in column group') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);  
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
               
             #  
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ($token->{tag_name} eq 'col') {  
               !!!insert-element ($token->{tag_name}, $token->{attributes});  
               pop @{$self->{open_elements}};  
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'colgroup') {  
               if ($self->{open_elements}->[-1]->[1] eq 'html') {  
                 !!!parse-error (type => 'unmatched end tag:colgroup');  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               } else {  
                 pop @{$self->{open_elements}}; # colgroup  
                 $self->{insertion_mode} = 'in table';  
                 !!!next-token;  
                 redo B;              
               }  
             } elsif ($token->{tag_name} eq 'col') {  
               !!!parse-error (type => 'unmatched end tag:col');  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
           } else {  
             #  
           }  
   
           ## As if </colgroup>  
           if ($self->{open_elements}->[-1]->[1] eq 'html') {  
             !!!parse-error (type => 'unmatched end tag:colgroup');  
             ## Ignore the token  
             !!!next-token;  
             redo B;  
           } else {  
             pop @{$self->{open_elements}}; # colgroup  
             $self->{insertion_mode} = 'in table';  
             ## reprocess  
             redo B;  
           }  
         } elsif ($self->{insertion_mode} eq 'in table body') {  
           if ($token->{type} eq 'character') {  
             ## NOTE: This is a "character in table" code clone.  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);  
                 
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
   
             !!!parse-error (type => 'in table:#character');  
   
             ## 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,  
                 }->{$self->{open_elements}->[-1]->[1]}) {  
               # MUST  
               my $foster_parent_element;  
               my $next_sibling;  
               my $prev_sibling;  
               OE: for (reverse 0..$#{$self->{open_elements}}) {  
                 if ($self->{open_elements}->[$_]->[1] eq 'table') {  
                   my $parent = $self->{open_elements}->[$_]->[0]->parent_node;  
                   if (defined $parent and $parent->node_type == 1) {  
                     $foster_parent_element = $parent;  
                     $next_sibling = $self->{open_elements}->[$_]->[0];  
                     $prev_sibling = $next_sibling->previous_sibling;  
                   } else {  
                     $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];  
                     $prev_sibling = $foster_parent_element->last_child;  
                   }  
                   last OE;  
                 }  
               } # OE  
               $foster_parent_element = $self->{open_elements}->[0]->[0] and  
               $prev_sibling = $foster_parent_element->last_child  
                 unless defined $foster_parent_element;  
               if (defined $prev_sibling and  
                   $prev_sibling->node_type == 3) {  
                 $prev_sibling->manakai_append_text ($token->{data});  
               } else {  
                 $foster_parent_element->insert_before  
                   ($self->{document}->create_text_node ($token->{data}),  
                    $next_sibling);  
               }  
             } else {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
             }  
               
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'comment') {  
             ## Copied from 'in table'  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ({  
                  tr => 1,  
                  th => 1, td => 1,  
                 }->{$token->{tag_name}}) {  
               unless ($token->{tag_name} eq 'tr') {  
                 !!!parse-error (type => 'missing start tag:tr');  
               }  
   
               ## Clear back to table body context  
               while (not {  
                 tbody => 1, tfoot => 1, thead => 1, html => 1,  
               }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{open_elements}};  
               }  
                 
               $self->{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..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ({  
                      tbody => 1, thead => 1, tfoot => 1,  
                     }->{$node->[1]}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
   
               ## Clear back to table body context  
               while (not {  
                 tbody => 1, tfoot => 1, thead => 1, html => 1,  
               }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{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 @{$self->{open_elements}};  
               $self->{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 (type => 'not closed:table');  
   
               ## As if </table>  
               ## have a table element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'table') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:table');  
                 ## Ignore tokens </table><table>  
                 !!!next-token;  
                 redo B;  
               }  
                 
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                    tbody => 1, tfoot=> 1, thead => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token; # <table>  
                 $token = {type => 'end tag', tag_name => 'table'};  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
               }  
   
               if ($self->{open_elements}->[-1]->[1] ne 'table') {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
               }  
   
               splice @{$self->{open_elements}}, $i;  
   
               $self->_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..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
   
               ## Clear back to table body context  
               while (not {  
                 tbody => 1, tfoot => 1, thead => 1, html => 1,  
               }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{open_elements}};  
               }  
   
               pop @{$self->{open_elements}};  
               $self->{insertion_mode} = 'in table';  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'table') {  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ({  
                      tbody => 1, thead => 1, tfoot => 1,  
                     }->{$node->[1]}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
   
               ## Clear back to table body context  
               while (not {  
                 tbody => 1, tfoot => 1, thead => 1, html => 1,  
               }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{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 @{$self->{open_elements}};  
               $self->{insertion_mode} = 'in table';  
               ## reprocess  
               redo B;  
             } elsif ({  
                       body => 1, caption => 1, col => 1, colgroup => 1,  
                       html => 1, td => 1, th => 1, tr => 1,  
                      }->{$token->{tag_name}}) {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
           } else {  
             #  
           }  
             
           ## As if in table  
           !!!parse-error (type => 'in table:'.$token->{tag_name});  
           $in_body->($insert_to_foster);  
           redo B;  
         } elsif ($self->{insertion_mode} eq 'in row') {  
           if ($token->{type} eq 'character') {  
             ## NOTE: This is a "character in table" code clone.  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);  
                 
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
   
             !!!parse-error (type => 'in table:#character');  
   
             ## 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,  
                 }->{$self->{open_elements}->[-1]->[1]}) {  
               # MUST  
               my $foster_parent_element;  
               my $next_sibling;  
               my $prev_sibling;  
               OE: for (reverse 0..$#{$self->{open_elements}}) {  
                 if ($self->{open_elements}->[$_]->[1] eq 'table') {  
                   my $parent = $self->{open_elements}->[$_]->[0]->parent_node;  
                   if (defined $parent and $parent->node_type == 1) {  
                     $foster_parent_element = $parent;  
                     $next_sibling = $self->{open_elements}->[$_]->[0];  
                     $prev_sibling = $next_sibling->previous_sibling;  
                   } else {  
                     $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];  
                     $prev_sibling = $foster_parent_element->last_child;  
                   }  
                   last OE;  
                 }  
               } # OE  
               $foster_parent_element = $self->{open_elements}->[0]->[0] and  
               $prev_sibling = $foster_parent_element->last_child  
                 unless defined $foster_parent_element;  
               if (defined $prev_sibling and  
                   $prev_sibling->node_type == 3) {  
                 $prev_sibling->manakai_append_text ($token->{data});  
               } else {  
                 $foster_parent_element->insert_before  
                   ($self->{document}->create_text_node ($token->{data}),  
                    $next_sibling);  
               }  
             } else {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
             }  
               
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'comment') {  
             ## Copied from 'in table'  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ($token->{tag_name} eq 'th' or  
                 $token->{tag_name} eq 'td') {  
               ## Clear back to table row context  
               while (not {  
                 tr => 1, html => 1,  
               }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{open_elements}};  
               }  
                 
               !!!insert-element ($token->{tag_name}, $token->{attributes});  
               $self->{insertion_mode} = 'in cell';  
   
               push @$active_formatting_elements, ['#marker', ''];  
                 
               !!!next-token;  
               redo B;  
             } elsif ({  
                       caption => 1, col => 1, colgroup => 1,  
                       tbody => 1, tfoot => 1, thead => 1, tr => 1,  
                      }->{$token->{tag_name}}) {  
               ## As if </tr>  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'tr') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
   
               ## Clear back to table row context  
               while (not {  
                 tr => 1, html => 1,  
               }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{open_elements}};  
               }  
   
               pop @{$self->{open_elements}}; # tr  
               $self->{insertion_mode} = 'in table body';  
               ## reprocess  
               redo B;  
             } elsif ($token->{tag_name} eq 'table') {  
               ## NOTE: This is a code clone of "table in table"  
               !!!parse-error (type => 'not closed:table');  
   
               ## As if </table>  
               ## have a table element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'table') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:table');  
                 ## Ignore tokens </table><table>  
                 !!!next-token;  
                 redo B;  
               }  
                 
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                    tbody => 1, tfoot=> 1, thead => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token; # <table>  
                 $token = {type => 'end tag', tag_name => 'table'};  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
               }  
   
               if ($self->{open_elements}->[-1]->[1] ne 'table') {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
               }  
   
               splice @{$self->{open_elements}}, $i;  
   
               $self->_reset_insertion_mode;  
   
               ## reprocess  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'tr') {  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
   
               ## Clear back to table row context  
               while (not {  
                 tr => 1, html => 1,  
               }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{open_elements}};  
               }  
   
               pop @{$self->{open_elements}}; # tr  
               $self->{insertion_mode} = 'in table body';  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'table') {  
               ## As if </tr>  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'tr') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{type});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
   
               ## Clear back to table row context  
               while (not {  
                 tr => 1, html => 1,  
               }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{open_elements}};  
               }  
   
               pop @{$self->{open_elements}}; # tr  
               $self->{insertion_mode} = 'in table body';  
               ## reprocess  
               redo B;  
             } elsif ({  
                       tbody => 1, tfoot => 1, thead => 1,  
                      }->{$token->{tag_name}}) {  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
   
               ## As if </tr>  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'tr') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:tr');  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
   
               ## Clear back to table row context  
               while (not {  
                 tr => 1, html => 1,  
               }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{open_elements}};  
               }  
   
               pop @{$self->{open_elements}}; # tr  
               $self->{insertion_mode} = 'in table body';  
               ## reprocess  
               redo B;  
             } elsif ({  
                       body => 1, caption => 1, col => 1,  
                       colgroup => 1, html => 1, td => 1, th => 1,  
                      }->{$token->{tag_name}}) {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
           } else {  
             #  
           }  
   
           ## As if in table  
           !!!parse-error (type => 'in table:'.$token->{tag_name});  
           $in_body->($insert_to_foster);  
           redo B;  
         } elsif ($self->{insertion_mode} eq 'in cell') {  
           if ($token->{type} eq 'character') {  
             ## NOTE: This is a code clone of "character in body".  
             $reconstruct_active_formatting_elements->($insert_to_current);  
               
             $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
   
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'comment') {  
             ## NOTE: This is a code clone of "comment in body".  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ({  
                  caption => 1, col => 1, colgroup => 1,  
                  tbody => 1, td => 1, tfoot => 1, th => 1,  
                  thead => 1, tr => 1,  
                 }->{$token->{tag_name}}) {  
               ## have an element in table scope  
               my $tn;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'td' or $node->[1] eq 'th') {  
                   $tn = $node->[1];  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $tn) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
   
               ## Close the cell  
               !!!back-token; # <?>  
               $token = {type => 'end tag', tag_name => $tn};  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'td' or $token->{tag_name} eq 'th') {  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
                 
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => ($token->{tag_name} eq 'th'),  
                    th => ($token->{tag_name} eq 'td'),  
                    tr => 1,  
                    tbody => 1, tfoot=> 1, thead => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
               }  
   
               if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
               }  
   
               splice @{$self->{open_elements}}, $i;  
   
               $clear_up_to_marker->();  
   
               $self->{insertion_mode} = 'in row';  
   
               !!!next-token;  
               redo B;  
             } elsif ({  
                       body => 1, caption => 1, col => 1,  
                       colgroup => 1, html => 1,  
                      }->{$token->{tag_name}}) {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
             } elsif ({  
                       table => 1, tbody => 1, tfoot => 1,  
                       thead => 1, tr => 1,  
                      }->{$token->{tag_name}}) {  
               ## have an element in table scope  
               my $i;  
               my $tn;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {  
                   $tn = $node->[1];  
                   ## NOTE: There is exactly one |td| or |th| element  
                   ## in scope in the stack of open elements by definition.  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
   
               ## Close the cell  
               !!!back-token; # </?>  
               $token = {type => 'end tag', tag_name => $tn};  
               redo B;  
             } else {  
               #  
             }  
           } else {  
             #  
           }  
             
           $in_body->($insert_to_current);  
           redo B;  
         } elsif ($self->{insertion_mode} eq 'in select') {  
           if ($token->{type} eq 'character') {  
             $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ($token->{tag_name} eq 'option') {  
               if ($self->{open_elements}->[-1]->[1] eq 'option') {  
                 ## As if </option>  
                 pop @{$self->{open_elements}};  
               }  
   
               !!!insert-element ($token->{tag_name}, $token->{attributes});  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'optgroup') {  
               if ($self->{open_elements}->[-1]->[1] eq 'option') {  
                 ## As if </option>  
                 pop @{$self->{open_elements}};  
               }  
   
               if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {  
                 ## As if </optgroup>  
                 pop @{$self->{open_elements}};  
               }  
   
               !!!insert-element ($token->{tag_name}, $token->{attributes});  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'select') {  
               !!!parse-error (type => 'not closed:select');  
               ## As if </select> instead  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:select');  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
                 
               splice @{$self->{open_elements}}, $i;  
   
               $self->_reset_insertion_mode;  
   
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'optgroup') {  
               if ($self->{open_elements}->[-1]->[1] eq 'option' and  
                   $self->{open_elements}->[-2]->[1] eq 'optgroup') {  
                 ## As if </option>  
                 splice @{$self->{open_elements}}, -2;  
               } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {  
                 pop @{$self->{open_elements}};  
               } else {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
               }  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'option') {  
               if ($self->{open_elements}->[-1]->[1] eq 'option') {  
                 pop @{$self->{open_elements}};  
               } else {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
               }  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'select') {  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
                 
               splice @{$self->{open_elements}}, $i;  
   
               $self->_reset_insertion_mode;  
   
               !!!next-token;  
               redo B;  
             } elsif ({  
                       caption => 1, table => 1, tbody => 1,  
                       tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,  
                      }->{$token->{tag_name}}) {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
                 
               ## As if </select>  
               ## have an element in table scope  
               undef $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'select') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:select');  
                 ## Ignore the </select> token  
                 !!!next-token; ## TODO: ok?  
                 redo B;  
               }  
                 
               splice @{$self->{open_elements}}, $i;  
   
               $self->_reset_insertion_mode;  
   
               ## reprocess  
               redo B;  
             } else {  
               #  
             }  
           } else {  
             #  
           }  
   
           !!!parse-error (type => 'in select:'.$token->{tag_name});  
           ## Ignore the token  
           !!!next-token;  
           redo B;  
         } elsif ($self->{insertion_mode} eq 'after body') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               my $data = $1;  
               ## As if in body  
               $reconstruct_active_formatting_elements->($insert_to_current);  
                 
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);  
   
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
               
             #  
             !!!parse-error (type => 'after body:#'.$token->{type});  
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[0]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             !!!parse-error (type => 'after body:'.$token->{tag_name});  
             #  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'html') {  
               if (defined $self->{inner_html_node}) {  
                 !!!parse-error (type => 'unmatched end tag:html');  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               } else {  
                 $previous_insertion_mode = $self->{insertion_mode};  
                 $self->{insertion_mode} = 'trailing end';  
                 !!!next-token;  
                 redo B;  
               }  
             } else {  
               !!!parse-error (type => 'after body:/'.$token->{tag_name});  
             }  
           } else {  
             !!!parse-error (type => 'after body:#'.$token->{type});  
           }  
   
           $self->{insertion_mode} = 'in body';  
           ## reprocess  
           redo B;  
         } elsif ($self->{insertion_mode} eq 'in frameset') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);  
   
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
   
             #  
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ($token->{tag_name} eq 'frameset') {  
               !!!insert-element ($token->{tag_name}, $token->{attributes});  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'frame') {  
               !!!insert-element ($token->{tag_name}, $token->{attributes});  
               pop @{$self->{open_elements}};  
               !!!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 ($self->{open_elements}->[-1]->[1] eq 'html' and  
                   @{$self->{open_elements}} == 1) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
               } else {  
                 pop @{$self->{open_elements}};  
                 !!!next-token;  
               }  
                 
               ## if not inner_html and  
               if ($self->{open_elements}->[-1]->[1] ne 'frameset') {  
                 $self->{insertion_mode} = 'after frameset';  
               }  
               redo B;  
             } else {  
               #  
             }  
           } else {  
             #  
           }  
             
           if (defined $token->{tag_name}) {  
             !!!parse-error (type => 'in frameset:'.($token->{type} eq 'end tag' ? '/' : '').$token->{tag_name});  
           } else {  
             !!!parse-error (type => 'in frameset:#'.$token->{type});  
           }  
           ## Ignore the token  
           !!!next-token;  
           redo B;  
         } elsif ($self->{insertion_mode} eq 'after frameset') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);  
   
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
   
             if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {  
               !!!parse-error (type => 'after frameset:#character');  
   
               ## Ignore the token.  
               if (length $token->{data}) {  
                 ## reprocess the rest of characters  
               } else {  
                 !!!next-token;  
               }  
               redo B;  
             }  
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ($token->{tag_name} eq 'noframes') {  
               $in_body->($insert_to_current);  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'html') {  
               $previous_insertion_mode = $self->{insertion_mode};  
               $self->{insertion_mode} = 'trailing end';  
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
           } else {  
             die "$0: $token->{type}: Unknown token type";  
           }  
             
           !!!parse-error (type => 'after frameset:'.($token->{tag_name} eq 'end tag' ? '/' : '').$token->{tag_name});  
           ## Ignore the token  
           !!!next-token;  
           redo B;  
   
           ## ISSUE: An issue in spec there  
         } else {  
           die "$0: $self->{insertion_mode}: Unknown insertion mode";  
         }  
       }  
     } elsif ($self->{insertion_mode} eq 'trailing end') {  
       ## states in the main stage is preserved yet # MUST  
         
       if ($token->{type} eq 'DOCTYPE') {  
         !!!parse-error (type => 'after html:#DOCTYPE');  
         ## Ignore the token  
         !!!next-token;  
         redo B;  
       } elsif ($token->{type} eq 'comment') {  
         my $comment = $self->{document}->create_comment ($token->{data});  
         $self->{document}->append_child ($comment);  
         !!!next-token;  
         redo B;  
       } elsif ($token->{type} eq 'character') {  
         if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
           my $data = $1;  
           ## As if in the main phase.  
           ## NOTE: The insertion mode in the main phase  
           ## just before the phase has been changed to the trailing  
           ## end phase is either "after body" or "after frameset".  
           $reconstruct_active_formatting_elements->($insert_to_current);  
             
           $self->{open_elements}->[-1]->[0]->manakai_append_text ($data);  
             
           unless (length $token->{data}) {  
             !!!next-token;  
             redo B;  
           }  
         }  
   
         !!!parse-error (type => 'after html:#character');  
         $self->{insertion_mode} = $previous_insertion_mode;  
         ## reprocess  
         redo B;  
       } elsif ($token->{type} eq 'start tag' or  
                $token->{type} eq 'end tag') {  
         !!!parse-error (type => 'after html:'.($token->{type} eq 'end tag' ? '/' : '').$token->{tag_name});  
         $self->{insertion_mode} = $previous_insertion_mode;  
         ## reprocess  
         redo B;  
       } elsif ($token->{type} eq 'end-of-file') {  
         ## Stop parsing  
         last B;  
       } else {  
         die "$0: $token->{type}: Unknown token";  
6285        }        }
6286      }      }
6287        redo B;
6288    } # B    } # B
6289    
6290      ## NOTE: The "trailing end" phase in HTML5 is split into
6291      ## two insertion modes: "after html body" and "after html frameset".
6292      ## NOTE: States in the main stage is preserved while
6293      ## the parser stays in the trailing end phase. # MUST
6294    
6295    ## Stop parsing # MUST    ## Stop parsing # MUST
6296        
6297    ## TODO: script stuffs    ## TODO: script stuffs
# Line 5268  sub set_inner_html ($$$) { Line 6303  sub set_inner_html ($$$) {
6303    my $s = \$_[0];    my $s = \$_[0];
6304    my $onerror = $_[1];    my $onerror = $_[1];
6305    
6306      ## ISSUE: Should {confident} be true?
6307    
6308    my $nt = $node->node_type;    my $nt = $node->node_type;
6309    if ($nt == 9) {    if ($nt == 9) {
6310      # MUST      # MUST
# Line 5300  sub set_inner_html ($$$) { Line 6337  sub set_inner_html ($$$) {
6337      my $i = 0;      my $i = 0;
6338      my $line = 1;      my $line = 1;
6339      my $column = 0;      my $column = 0;
6340      $p->{set_next_input_character} = sub {      $p->{set_next_char} = sub {
6341        my $self = shift;        my $self = shift;
6342    
6343        pop @{$self->{prev_input_character}};        pop @{$self->{prev_char}};
6344        unshift @{$self->{prev_input_character}}, $self->{next_input_character};        unshift @{$self->{prev_char}}, $self->{next_char};
6345    
6346        $self->{next_input_character} = -1 and return if $i >= length $$s;        $self->{next_char} = -1 and return if $i >= length $$s;
6347        $self->{next_input_character} = ord substr $$s, $i++, 1;        $self->{next_char} = ord substr $$s, $i++, 1;
6348        $column++;        $column++;
6349    
6350        if ($self->{next_input_character} == 0x000A) { # LF        if ($self->{next_char} == 0x000A) { # LF
6351          $line++;          $line++;
6352          $column = 0;          $column = 0;
6353        } elsif ($self->{next_input_character} == 0x000D) { # CR          !!!cp ('i1');
6354          } elsif ($self->{next_char} == 0x000D) { # CR
6355          $i++ if substr ($$s, $i, 1) eq "\x0A";          $i++ if substr ($$s, $i, 1) eq "\x0A";
6356          $self->{next_input_character} = 0x000A; # LF # MUST          $self->{next_char} = 0x000A; # LF # MUST
6357          $line++;          $line++;
6358          $column = 0;          $column = 0;
6359        } elsif ($self->{next_input_character} > 0x10FFFF) {          !!!cp ('i2');
6360          $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        } elsif ($self->{next_char} > 0x10FFFF) {
6361        } elsif ($self->{next_input_character} == 0x0000) { # NULL          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
6362            !!!cp ('i3');
6363          } elsif ($self->{next_char} == 0x0000) { # NULL
6364            !!!cp ('i4');
6365          !!!parse-error (type => 'NULL');          !!!parse-error (type => 'NULL');
6366          $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
6367        }        }
6368      };      };
6369      $p->{prev_input_character} = [-1, -1, -1];      $p->{prev_char} = [-1, -1, -1];
6370      $p->{next_input_character} = -1;      $p->{next_char} = -1;
6371            
6372      my $ponerror = $onerror || sub {      my $ponerror = $onerror || sub {
6373        my (%opt) = @_;        my (%opt) = @_;
# Line 5340  sub set_inner_html ($$$) { Line 6381  sub set_inner_html ($$$) {
6381      $p->_initialize_tree_constructor;      $p->_initialize_tree_constructor;
6382    
6383      ## Step 2      ## Step 2
6384      my $node_ln = $node->local_name;      my $node_ln = $node->manakai_local_name;
6385      $p->{content_model_flag} = {      $p->{content_model} = {
6386        title => 'RCDATA',        title => RCDATA_CONTENT_MODEL,
6387        textarea => 'RCDATA',        textarea => RCDATA_CONTENT_MODEL,
6388        style => 'CDATA',        style => CDATA_CONTENT_MODEL,
6389        script => 'CDATA',        script => CDATA_CONTENT_MODEL,
6390        xmp => 'CDATA',        xmp => CDATA_CONTENT_MODEL,
6391        iframe => 'CDATA',        iframe => CDATA_CONTENT_MODEL,
6392        noembed => 'CDATA',        noembed => CDATA_CONTENT_MODEL,
6393        noframes => 'CDATA',        noframes => CDATA_CONTENT_MODEL,
6394        noscript => 'CDATA',        noscript => CDATA_CONTENT_MODEL,
6395        plaintext => 'PLAINTEXT',        plaintext => PLAINTEXT_CONTENT_MODEL,
6396      }->{$node_ln} || 'PCDATA';      }->{$node_ln};
6397         ## ISSUE: What is "the name of the element"? local name?      $p->{content_model} = PCDATA_CONTENT_MODEL
6398            unless defined $p->{content_model};
6399            ## ISSUE: What is "the name of the element"? local name?
6400    
6401      $p->{inner_html_node} = [$node, $node_ln];      $p->{inner_html_node} = [$node, $node_ln];
6402    
# Line 5378  sub set_inner_html ($$$) { Line 6421  sub set_inner_html ($$$) {
6421        if ($anode->node_type == 1) {        if ($anode->node_type == 1) {
6422          my $nsuri = $anode->namespace_uri;          my $nsuri = $anode->namespace_uri;
6423          if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {          if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {
6424            if ($anode->local_name eq 'form') { ## TODO: case?            if ($anode->manakai_local_name eq 'form') {
6425                !!!cp ('i5');
6426              $p->{form_element} = $anode;              $p->{form_element} = $anode;
6427              last AN;              last AN;
6428            }            }
# Line 5418  sub set_inner_html ($$$) { Line 6462  sub set_inner_html ($$$) {
6462    
6463  } # tree construction stage  } # tree construction stage
6464    
6465  sub get_inner_html ($$$) {  package Whatpm::HTML::RestartParser;
6466    my (undef, $node, $on_error) = @_;  push our @ISA, 'Error';
   
   ## Step 1  
   my $s = '';  
   
   my $in_cdata;  
   my $parent = $node;  
   while (defined $parent) {  
     if ($parent->node_type == 1 and  
         $parent->namespace_uri eq 'http://www.w3.org/1999/xhtml' and  
         {  
           style => 1, script => 1, xmp => 1, iframe => 1,  
           noembed => 1, noframes => 1, noscript => 1,  
         }->{$parent->local_name}) { ## TODO: case thingy  
       $in_cdata = 1;  
     }  
     $parent = $parent->parent_node;  
   }  
   
   ## Step 2  
   my @node = @{$node->child_nodes};  
   C: while (@node) {  
     my $child = shift @node;  
     unless (ref $child) {  
       if ($child eq 'cdata-out') {  
         $in_cdata = 0;  
       } else {  
         $s .= $child; # end tag  
       }  
       next C;  
     }  
       
     my $nt = $child->node_type;  
     if ($nt == 1) { # Element  
       my $tag_name = $child->tag_name; ## TODO: manakai_tag_name  
       $s .= '<' . $tag_name;  
       ## NOTE: Non-HTML case:  
       ## <http://permalink.gmane.org/gmane.org.w3c.whatwg.discuss/11191>  
   
       my @attrs = @{$child->attributes}; # sort order MUST be stable  
       for my $attr (@attrs) { # order is implementation dependent  
         my $attr_name = $attr->name; ## TODO: manakai_name  
         $s .= ' ' . $attr_name . '="';  
         my $attr_value = $attr->value;  
         ## escape  
         $attr_value =~ s/&/&amp;/g;  
         $attr_value =~ s/</&lt;/g;  
         $attr_value =~ s/>/&gt;/g;  
         $attr_value =~ s/"/&quot;/g;  
         $s .= $attr_value . '"';  
       }  
       $s .= '>';  
         
       next C if {  
         area => 1, base => 1, basefont => 1, bgsound => 1,  
         br => 1, col => 1, embed => 1, frame => 1, hr => 1,  
         img => 1, input => 1, link => 1, meta => 1, param => 1,  
         spacer => 1, wbr => 1,  
       }->{$tag_name};  
   
       $s .= "\x0A" if $tag_name eq 'pre' or $tag_name eq 'textarea';  
   
       if (not $in_cdata and {  
         style => 1, script => 1, xmp => 1, iframe => 1,  
         noembed => 1, noframes => 1, noscript => 1,  
         plaintext => 1,  
       }->{$tag_name}) {  
         unshift @node, 'cdata-out';  
         $in_cdata = 1;  
       }  
   
       unshift @node, @{$child->child_nodes}, '</' . $tag_name . '>';  
     } elsif ($nt == 3 or $nt == 4) {  
       if ($in_cdata) {  
         $s .= $child->data;  
       } else {  
         my $value = $child->data;  
         $value =~ s/&/&amp;/g;  
         $value =~ s/</&lt;/g;  
         $value =~ s/>/&gt;/g;  
         $value =~ s/"/&quot;/g;  
         $s .= $value;  
       }  
     } elsif ($nt == 8) {  
       $s .= '<!--' . $child->data . '-->';  
     } elsif ($nt == 10) {  
       $s .= '<!DOCTYPE ' . $child->name . '>';  
     } elsif ($nt == 5) { # entrefs  
       push @node, @{$child->child_nodes};  
     } else {  
       $on_error->($child) if defined $on_error;  
     }  
     ## ISSUE: This code does not support PIs.  
   } # C  
     
   ## Step 3  
   return \$s;  
 } # get_inner_html  
6467    
6468  1;  1;
6469  # $Date$  # $Date$

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.82

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24