1
0
Fork 0
mirror of https://github.com/perlbot/perlbuut synced 2025-06-07 10:35:41 -04:00
perlbuut/deps/JavaScript-SpiderMonkey-0.19-patched/t/02nav-appv.t
2009-12-05 00:02:04 -05:00

21 lines
469 B
Perl
Executable file

######################################################################
# Set and retrieve document.location.href
######################################################################
print "1..1\n";
$init = "";
require "t/init.pl";
my $source = <<EOT;
$init
document.location.href = "http://www.com";
EOT
my $rc = $js->eval($source);
die "eval returned undef" unless $rc;
if($js->property_get("navigator.appVersion") ne "3") {
print "not ";
}
print "ok 1\n";