Parent

Class/Module Index [+]

Quicksearch

HTML5::AfterHeadPhase

Public Instance Methods

anything_else() click to toggle source
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/after_head_phase.rb, line 44
def anything_else
  @tree.insert_element('body', {})
  @parser.phase = @parser.phases[:inBody]
end
processCharacters(data) click to toggle source
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/after_head_phase.rb, line 13
def processCharacters(data)
  anything_else
  @parser.phase.processCharacters(data)
end
processEndTag(name) click to toggle source
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/after_head_phase.rb, line 39
def processEndTag(name)
  anything_else
  @parser.phase.processEndTag(name)
end
process_eof() click to toggle source
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/after_head_phase.rb, line 8
def process_eof
  anything_else
  @parser.phase.process_eof
end
startTagBody(name, attributes) click to toggle source
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/after_head_phase.rb, line 18
def startTagBody(name, attributes)
  @tree.insert_element(name, attributes)
  @parser.phase = @parser.phases[:inBody]
end
startTagFrameset(name, attributes) click to toggle source
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/after_head_phase.rb, line 23
def startTagFrameset(name, attributes)
  @tree.insert_element(name, attributes)
  @parser.phase = @parser.phases[:inFrameset]
end
startTagFromHead(name, attributes) click to toggle source
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/after_head_phase.rb, line 28
def startTagFromHead(name, attributes)
  parse_error("unexpected-start-tag-out-of-my-head", {"name" => name})
  @parser.phase = @parser.phases[:inHead]
  @parser.phase.processStartTag(name, attributes)
end
startTagOther(name, attributes) click to toggle source
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/after_head_phase.rb, line 34
def startTagOther(name, attributes)
  anything_else
  @parser.phase.processStartTag(name, attributes)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.