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

23 lines
487 B
Perl
Executable file

######################################################################
# Create an array as part of an object
######################################################################
print "1..1\n";
$init = "";
require "t/init.pl";
$js->array_by_path("document.form");
my $source = <<EOT;
$init
document.form[0] = "abc";
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";