# File lib/html5/html5parser/in_body_phase.rb, line 203
    def startTagNobr(name, attributes)
      @tree.reconstructActiveFormattingElements
      if in_scope?('nobr')
        parse_error("unexpected-start-tag-implies-end-tag", {"startName" => "nobr", "endName" => "nobr"})
        processEndTag('nobr')
        # XXX Need tests that trigger the following
        @tree.reconstructActiveFormattingElements
      end
      addFormattingElement(name, attributes)
    end