blob: bdd0ac0b7344c7bbb2440685b324cbb86bd537e2 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>
<iframe></iframe>
<script>
var arrayConstructor = frames[0].Array;
arrayConstructor.prototype.foo = "bar";
var x = new arrayConstructor();
shouldBe("x.foo", '"bar"');
</script>
</body>
</html>