Skip to content

Commit

Permalink
Added <frame src="..."> to the things recognized
Browse files Browse the repository at this point in the history
  • Loading branch information
aas committed Jul 24, 1996
1 parent 49b715e commit a1e34b8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/HTML/LinkExtor.pm
Expand Up @@ -40,14 +40,15 @@ use vars qw(%LINK_ELEMENT);
body => 'background',
base => 'href',
a => 'href',
img => [qw(src lowsrc usemap)], # lowsrc is a Netscape invention
img => [qw(src lowsrc usemap)], # 'lowsrc' is a Netscape invention
form => 'action',
input => 'src',
'link' => 'href', # need quoting since link is a perl builtin
frame => 'src',
applet => 'codebase',
area => 'href',
embed => 'src', # used in Netscape 3.0 for Shockwave and things like that
frame => 'src', # Netscape 2.0 extention
embed => 'src', # used in Netscape 2.0 for Shockwave and things like that
);

=head2 $p = HTML::LinkExtor->new($callback, $base)
Expand Down

0 comments on commit a1e34b8

Please sign in to comment.