# File lib/html5/html5parser/in_row_phase.rb, line 76
    def clearStackToTableRowContext
      until %w[tr html].include?(name = @tree.open_elements.last.name)
        parse_error("unexpected-implied-end-tag-in-table-row",
                {"name" => @tree.open_elements.last.name})
        @tree.open_elements.pop
      end
    end