# File lib/html5/html5parser/in_table_phase.rb, line 59
    def startTagOther(name, attributes)
      parse_error("unexpected-start-tag-implies-table-voodoo",
              {"name" => name})
      # Make all the special element rearranging voodoo kick in
      @tree.insert_from_table = true
      # Process the start tag in the "in body" mode
      @parser.phases[:inBody].processStartTag(name, attributes)
      @tree.insert_from_table = false
    end