blob: 5b5dc6dd66c13966be399bea5ee8e7c6f934cf83 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>
<script>
test1 = "FAIL";
var test2 = "FAIL"
function test3() {
return "FAIL";
}
</script>
<script>
function test1() {
return "SUCCESS";
}
function test2() {
return "SUCCESS";
}
function test3() {
return "SUCCESS";
}
shouldBeTrue("typeof test1 == 'function'");
shouldBeTrue("typeof test2 == 'function'");
shouldBeTrue("typeof test3 == 'function'");
shouldBe("test3()", '"SUCCESS"');
</script>
</body>
</html>