On Fri May 15 02:15:45 2009, BDFOY wrote:
Show quoted text> Since the latest versions of HMTL::Parser do not parse the content of
> iframes, some of my applications using HTML::SimpleLinkExtor have
> broken. The text between the iframe tags is what the browser displays
> and is usually more HTML, and I need to be able to extract any links in
> that text.
Browsers that support iframes are supposed to ignore everything inside the iframe. They are
supposed to render the HTML found at the 'src' location.
Show quoted text> I'd like to at least be able to turn on parsing for iframes, even if it
> is off by default.
I see the point if you need to emulate the behaviour of very old browsers.
A workaround is to invoke a subparser on the iframe content text. I'll see if I find an easier
way to do this.