Subject: | Form Action attribute is returned by links() |
When getting the links from a html-string/file, the action attribute from the form tag gets listet, even if the form tag nor the action attribute belongs to the list of attributes/tags that should get listed by the HTML::SimpleLinkExtor->links() method.
Here is some sample code:
use HTML::SimpleLinkExtor;
Here is some sample code:
use HTML::SimpleLinkExtor;
my $html = '<html><body><form name="test" action="/test"><input type="submit" /></form></body></html>';
my $extor = HTML::SimpleLinkExtor->new();
$ex->parse($html);
print $ex->links;