# File lib/html5/html5parser/in_head_phase.rb, line 53
    def startTagNoscript(name, attributes)
      # XXX Need to decide whether to implement the scripting disabled case.
      element = @tree.createElement(name, attributes)
      if @tree.head_pointer !=nil and @parser.phase == @parser.phases[:inHead]
        appendToHead(element)
      else
        @tree.open_elements.last.appendChild(element)
      end
      @tree.open_elements.push(element)
      @parser.tokenizer.content_model_flag = :CDATA
    end