Skip to content

Instantly share code, notes, and snippets.

@flavorjones
Created May 11, 2009 05:35
Show Gist options
  • Save flavorjones/109879 to your computer and use it in GitHub Desktop.
Save flavorjones/109879 to your computer and use it in GitHub Desktop.
#! /usr/bin/ruby
# reproducing bug reported in http://github.com/tenderlove/nokogiri/issues/#issue/35
require 'rubygems'
require 'nokogiri'
iframe = %Q{<iframe style="width: 0%; height: 0px" src="http://someurl" frameborder=0 scrolling=no allowtransparency></iframe>}
doc = Nokogiri::HTML "<html><body><p></p></body></html>"
doc.at('p').after(iframe)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment