I am experiencing a "strange" behaviour on linhtml-parser-perl v.3.43
The "strange" behaviour is ONLY on this web page: http://communicator.virgilio.it Take this simple script: #################àà #!/usr/bin/perl -w use LWP::UserAgent; use HTML::Form; use Data::Dumper; my $ua = LWP::UserAgent->new; $ua->env_proxy; my $url="http://communicator.virgilio.it/"; my $response = $ua->get($url); die "Can't get $url -- ", $response->status_line unless $response->is_success; my @forms=HTML::Form->parse($response->content, $response->base); print Dumper(@forms); ########################### It doesn't work with libhtml-parser-perl v.3.43 (but it works with previous version) . If you change $url address to another (i.e. www.altavista.com), it DOES work. What is strange on that address concerning the new module?