# File lib/html5/html5parser/in_table_phase.rb, line 14
    def processCharacters(data)
      parse_error("unexpected-char-implies-table-voodoo")
      # Make all the special element rearranging voodoo kick in
      @tree.insert_from_table = true
      # Process the character in the "in body" mode
      @parser.phases[:inBody].processCharacters(data)
      @tree.insert_from_table = false
    end