On Thu, Apr 27, 2023 at 01:45:58AM +0200, Matija Nalis wrote: > > - complex but emulating browser behaviour better: > Add full handling of relative URIs. i.e. have push_uri() detect all > relative URIs and convert them to absolute URIs before adding them > to the list of URIs.
If you would have looked at sub push_uri(), that's what it already does: sub push_uri { .... my $target = target_uri($self->{base_href} || "", $uri); Sure, some things like this could probably be handled more intelligently when base is missing..