# File lib/nokogiri/html/document.rb, line 160 def initialize(jumptag) @jumptag = jumptag super() end
# File lib/nokogiri/html/document.rb, line 165 def start_element(name, attrs = []) super throw @jumptag, @encoding if @encoding throw @jumptag, nil if name =~ %r\A(?:div|h1|img|p|br)\z/ end