# File lib/feed_tools/vendor/html5/lib/html5/html5parser/in_column_group_phase.rb, line 44 def endTagCol(name) parse_error("no-end-tag", {"name" => "col"}) end
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/in_column_group_phase.rb, line 33 def endTagColgroup(name) if ignoreEndTagColgroup # inner_html case assert @parser.inner_html parse_error else @tree.open_elements.pop @parser.phase = @parser.phases[:inTable] end end
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/in_column_group_phase.rb, line 48 def endTagOther(name) ignoreEndTag = ignoreEndTagColgroup endTagColgroup('colgroup') @parser.phase.processEndTag(name) unless ignoreEndTag end
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/in_column_group_phase.rb, line 12 def ignoreEndTagColgroup @tree.open_elements[-1].name == 'html' end
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/in_column_group_phase.rb, line 16 def processCharacters(data) ignoreEndTag = ignoreEndTagColgroup endTagColgroup("colgroup") @parser.phase.processCharacters(data) unless ignoreEndTag end
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/in_column_group_phase.rb, line 22 def startTagCol(name, attributes) @tree.insert_element(name, attributes) @tree.open_elements.pop end
# File lib/feed_tools/vendor/html5/lib/html5/html5parser/in_column_group_phase.rb, line 27 def startTagOther(name, attributes) ignoreEndTag = ignoreEndTagColgroup endTagColgroup('colgroup') @parser.phase.processStartTag(name, attributes) unless ignoreEndTag end
Generated with the Darkfish Rdoc Generator 2.